/* ── Auth Pages CSS ─────────────────────────────── */

.auth-body {
  background: linear-gradient(160deg, var(--primary-dark) 0%, #0D5C42 40%, var(--bg) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-wrapper {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-header {
  text-align: center;
  padding: 16px 0 4px;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.brand-logo-lg {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.12));
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  font-family: var(--font2);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.auth-brand {
  font-size: 28px;
  font-weight: 800;
  color: white;
  font-family: var(--font2);
  letter-spacing: -0.5px;
}

.auth-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.auth-card {
  background: white;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.auth-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font2);
  margin-bottom: 6px;
}

.auth-card-sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 24px;
}

.auth-forgot {
  text-align: right;
  margin-top: -8px;
  margin-bottom: 20px;
}

.auth-forgot a {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  color: var(--text2);
  margin-top: 16px;
}

.auth-switch a {
  color: var(--primary);
  font-weight: 700;
}

/* Steps for signup */
.signup-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}

.step-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

.step-dot.done { background: var(--accent); }

/* OTP input row */
.otp-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.otp-box {
  width: 52px; height: 56px;
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg);
  transition: var(--transition);
}

.otp-box:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(11,110,79,0.08);
}
