  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .login-container {
    display: flex;
    background-color: white;
    box-shadow: 0 0 15px rgb(31, 58, 193, 0.2);
    border-radius: 15px;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
  }

  .logo-container {
    background-color: #2c3e50;
    padding: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-container img {
    max-width: 60%;
    height: auto;
    

  }

  .form-container {
    flex: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  h1 {
    margin-bottom: 20px;
    color: #333;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: grey;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .password-container {
    position: relative;
    width: 100%;
  }

  .password-container input[type="password"] {
    width: 100%;
    padding-right: 40px; /* Leave space for the eye icon */
  }

  .password-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #858a8e;
    font-size: 18px;
    cursor: pointer;
  }

  input[type="submit"] {
    padding: 10px 20px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  input[type="submit"]:hover {
    background-color: #d1d1d1;
    color: #2c3e50;
  }


  /*button {
    padding: 10px 20px;
    background-color: #000033;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    width: 50%;
    margin-left: 24%;
  }*/

  button:hover {
    background-color: #d1d1d1;
    color:#000033 ;
  }
.forgot-password {
  display: block;
  margin-top: 10px;
  color: #858a8e;
  font-size: 80%;
  text-decoration: none;
  padding-left: 35%;
}
/*.toggle-password {
    cursor: pointer;
    border: 1px solid #ccc;
    width: 10%;
    padding: 2%;
    border-radius: 4px;
    background-color: #ccc;
}*/
.forgot-password:hover {
 color: #f3b712;
}
  @media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    .logo-container {
        padding: 10px;
    }
    .form-container {
        padding: 20px;
    }
    input[type="submit"] {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .forgot-password {
      padding-left: 0;
    }
  }
  
   @media (max-width: 480px) {
    .logo-container img {
      max-width: 80%;
    }

    .form-container {
      padding: 15px;
    }

    input[type="submit"] {
      width: 100%;
    }
    .password-container i {
      font-size: 16px; /* Adjust icon size for small devices */
    }
     .forgot-password {
      text-align: center;
      margin-top: 15px;
    }
  }
