.login-page {
    min-height: calc(100vh - 120px); /* accounts for header/footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: #ffffff;
  }
  
  .login-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
  }

  .logo-image {
    height: 50%;
    width: 50%;
    margin-bottom: 2em;
  }
  
  .login-card h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
  }
  
  /* FORM */
  .form-group {
    text-align: left;
    margin-bottom: 18px;
  }
  
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
  }
  
  .form-group input::placeholder {
    color: #9ca3af;
  }
  
  /* PASSWORD */
  .password-wrapper {
    position: relative;
  }
  
  .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
  }
  
  /* FORGOT */
  .forgot {
    text-align: right;
    margin-bottom: 20px;
  }
  
  .forgot a {
    font-size: 13px;
    color: #0284c7;
    text-decoration: none;
  }
  
  /* BUTTON */
  .login-btn {
    width: 100%;
    padding: 12px;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
  }
  
  /* DIVIDER */
  .divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
  }
  
  /* SOCIAL */
  .social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 18px;
    cursor: pointer;
  }
  
  .social-btn.google { color: #ea4335; }
  .social-btn.facebook { color: #1877f2; }
  .social-btn.apple { color: #000000; }
  
  /* SIGN UP */
  .signup-text {
    font-size: 14px;
    color: #6b7280;
  }
  
  .signup-text a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 500;
  }

  .login-error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
  }


  /* PHONE INPUT */
.phone-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .country-code {
    padding: 12px 14px;
    font-size: 14px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    color: #374151;
  }
  
  .phone-wrapper input {
    border: none;
    flex: 1;
    padding: 12px 14px;
    font-size: 14px;
  }
  
  /* BACK LINK */
  .back-link {
    text-align: center;
    margin-top: 16px;
  }
  
  .back-link a {
    font-size: 13px;
    color: #0284c7;
    text-decoration: none;
  }
  
  



  /* OTP */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 16px;
  }
  
  .otp-input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
  }
  
  .otp-input:focus {
    outline: none;
    border-color: #0284c7;
  }
  
  .otp-timer {
    text-align: center;
    font-size: 13px;
    color: #ef4444;
    margin-bottom: 16px;
  }






  .password-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
  }
  
  