  
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
		/* Rounded Image 
		img {
 		 border-radius: 8px;
		 				} */
        
		/* Body Styles */
		
		
	body{

    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 10px auto;
    padding: 0px;
    width:1200px; 
	height: 50vh;
    background-color: #f0fafa;
	 box-shadow: 0 35px 35px rgba(0, 139, 139, 0.2);
	 background-image: url('images/body_background.svg');
	
   
		}
		
	.form-card {
    background: white;
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 35px 35px rgba(0, 139, 139, 0.2);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1; 
}









/* Header Styles */


        header {
            background-color: #004a99;
            color: white;
            padding: 20px;
            text-align: center;
			 justify-content: center;
            border-bottom: 3px solid #ffcc00;
			height: 120 px;
			width: 1200px;
        }

        /* Navigation Bar */
        nav {
            background-color: #333;
            display: flex;
            justify-content: center;
			width:1200px
        }

        nav a {
            color: white;
            padding: 14px 20px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
        }

        nav a:hover {
            background-color: #ffcc00;
            color: #333;
        }

        /* Layout Container */
        .container {
            display: flex;
            min-height: 70vh; 
			width: 1200px;
        }

        /* Sidebar */
        .sidebar {
            width: 150px;
            background-color: #f4f4f4;
            border-right: 1px solid #ddd;
            padding: 20px 0;
        }

        .sidebar ul {
            list-style-type: none;
        }

        .sidebar ul li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #ddd;
        }

        .sidebar ul li a:hover {
            background-color: #004a99;
            color: white;
			        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            padding: 4px;
            background: linear-gradient(180deg, #add8e6 0%, #ffffff 100%);
			
		}
            
        /* scrolling Area  under main containt*/
			
			
        .scrollcontent {
            flex: 1;
            padding: 4px;
            background: linear-gradient(180deg, #add8e6 0%, #ffffff 100%);
			width: auto;
			/* height: 67vh;  to be set in each page */ 
			overflow: auto; border: 1px solid gray;
			
        }
        footer{
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 12px;
			
			height: 36 px;
        }
    
	#footer_note{
		background-color: #333;
		color: white;
            text-align: center;
            padding: 10px;
            font-size: 12px;
			
			height: 36 px;
		
	}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px white; 
  border-radius: 20px;
  background: #6ae2f7;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #1a87ed; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0964db; 
}