body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
  }
  /* Header Navbar */
.header {
  width: 100%;
  background-color: black; /* Navbar background color */
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to the left */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  position: fixed; /* Makes the header fixed at the top */
  top: 0; /* Aligns the header to the very top of the viewport */
  left: 0; /* Ensures it starts from the left edge of the screen */
  z-index: 1000; /* Keeps it above other content */
}

.header .logo img {
  max-height: none;
  max-width: none;  /* Remove width restriction */
  height: 70px;     /* Set desired height for the logo */
  width: auto;      /* Maintain aspect ratio */
  margin: -10px 0;  /* Adjust spacing to prevent navbar enlargement */
}


/* Adjust body padding to prevent content overlap */
body {
  padding-top: 70px; /* Add padding equal to the header height */
}
  
  .login-container {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
  }
  
  .logo-section {
    background-color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    border-right: 1px solid #ddd;
  }
  
  .logo-section img.logo {
    width: 55%;
    margin-bottom: -8px;
  }
  
  .logo-section h1 {
    font-size: 2rem;
    color: #2a3eb1;
    margin: 0;
  }
  
  .form-section {
    padding: 50px 40px;
    width: 60%;
  }
  
  .form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .input-group {
    margin-bottom: 20px;
  }
  
  .input-group label {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    color: #555;
  }
  
  .input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .input-group input:focus {
    border-color: #ffbf00;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.3);
  }
  
  .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
  }
  
  .options a {
    color: #2a3eb1;
    text-decoration: none;
  }
  
  .options a:hover {
    text-decoration: underline;
  }
  
  .login-button {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .login-button:hover {
    background-color: #444;
  }
  
  .error {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  