/* ============================================================
   InsureBuddy — Login Page Styles
   ============================================================ */

/* ─── Auth Page Wrapper ──────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--navy-light);
}
.auth-box {
  width: 100%;
  max-width: 440px;
}
.auth-logo-wrap {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo-wrap .logo {
  justify-content: center;
  margin-bottom: 8px;
}
.auth-logo-wrap h2 { margin-top: 20px; }
.auth-logo-wrap p { font-size: 15px; }
.auth-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

/* ─── Forgot Password link inline ────────────────────────── */
.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.forgot-link {
  font-size: 12px;
  color: var(--emerald);
  font-weight: 500;
  transition: color var(--t-fast);
}
.forgot-link:hover { color: var(--emerald-dk); }

/* ─── Auth Footer Link ───────────────────────────────────── */
.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-400);
}
.auth-switch a { color: var(--emerald); font-weight: 600; }
.auth-switch a:hover { color: var(--emerald-dk); }
