/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Poppins', sans-serif;
    height: 100%;
  }
  
  /* Background */
  .background {
    background: url('/imx/1.avif') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
 
/* Login Form Container */
.login-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  
  .login-form {
    position: relative;
    background: rgba(255, 255, 255, 0.2); /* Glassmorphic translucent effect */
    backdrop-filter: blur(10px); /* Background blur */
    padding: 75px 30px;
    border-radius: 20px;
    max-width: 400px;
    height: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Deep shadow */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
  }
  
  /* Header Tab */
  .login-form::before {
    content: "Login";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9); /* White tab background */
    color: #1e3a8a; /* Dark blue text */
    font-size: 1.3rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Premium shadow */
    z-index: 2;
  }
  
  /* Input Group */
  .input-group {
    margin-bottom: 20px;
    position: relative;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px 15px 12px 40px; /* Adjusted padding for icons */
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Subtle border */
    border-radius: 15px; /* Rounded inputs */
    background: rgba(255, 255, 255, 0.734); /* Transparent background */
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); /* Subtle inset shadow */
    z-index: 2;
  }
  
  .input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.5); /* Slightly brighter background */
    border-color: #1e90ff; /* Blue border focus */
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.7); /* Blue glow */
  }
  
  /* Input Icons */
  .input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    pointer-events: none;
  }
  
  /* Remember Me and Forgot Password */
  .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .options a {
    color: #add8e6;
    text-decoration: none;
    font-weight: 500;
  }
  
  .options a:hover {
    text-decoration: underline;
  }
  
  /* Login Button */
  .login-button {
    width: 100%;
    padding: 12px 0;
    background-color: #ffffff;
    border: none;
    border-radius: 25px; /* Rounded button */
    color: rgb(0, 0, 0);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4); /* Button shadow */
  }
  
  .login-button:hover {
    background-color: #4682b4; /* Slightly darker blue */
    transform: translateY(-2px); /* Subtle lift */
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.5); /* Enhanced shadow */
  }
  
  /* Register Link */
  .login-form p {
    color: white;
    margin-top: 15px;
    font-size: 0.9rem;
  }
  
  .login-form a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
  }
  
  .login-form a:hover {
    text-decoration: underline;
  }