  .login-page {
    min-height: 100vh;
    background: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .login-container {
    background: linear-gradient(145deg, #e0eafc, #cfdef3);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0px 15px;
  }

  .login-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a2c4d;
  }

  .login-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
  }

  .login-form input,
  .login-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 1rem;
  }

  .login-button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1.5rem;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .login-form button:hover {
    background-color: #004096;
  }

  .forgot-password {
    margin-top: 1rem;
    text-align: center;
  }

  .forgot-password a {
    color: #0056b3;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .forgot-password a:hover {
    text-decoration: underline;
  }