.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
}
.auth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(74,124,89,0.5) 0%, transparent 60%);
}
.auth-visual--register {
  background: linear-gradient(160deg, #1c3a1c 0%, #2d5a27 60%, #4a7c59 100%);
}
.auth-visual__content { position: relative; z-index: 1; }
.auth-visual__emoji-grid {
  position: absolute;
  right: -2rem; bottom: -2rem;
  font-size: 7rem;
  opacity: 0.12;
  line-height: 1.1;
  z-index: 0;
}
.auth-visual h2 {
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.auth-visual p { color: rgba(250,245,236,0.7); line-height: 1.7; font-size: 0.95rem; }
.auth-perks { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 2rem; }
.auth-perk {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(250,245,236,0.85);
  font-size: 0.9rem;
}
.auth-perk-icon {
  width: 36px; height: 36px;
  background: rgba(250,245,236,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.auth-testimonial {
  position: relative; z-index: 1;
  background: rgba(250,245,236,0.08);
  border: 1px solid rgba(250,245,236,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.auth-testimonial p { color: rgba(250,245,236,0.85); font-style: italic; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.75rem; font-family: 'Fraunces', serif; }
.auth-testimonial-author { font-size: 0.78rem; color: rgba(250,245,236,0.55); }
.steps-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.step-item { display: flex; align-items: flex-start; gap: 1rem; color: rgba(250,245,236,0.85); font-size: 0.875rem; }
.step-num {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(250,245,236,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  flex-shrink: 0;
  color: var(--sage-light);
}
.step-item strong { display: block; margin-bottom: 0.15rem; }
.step-item span { opacity: 0.65; font-size: 0.8rem; }
.auth-panel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}
.auth-form-box { width: 100%; max-width: 420px; }
.auth-form-box--wide { max-width: 460px; }
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header h1 { font-size: 1.9rem; margin-bottom: 0.4rem; }
.auth-header p { color: var(--muted); font-size: 0.9rem; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.or-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-dark); }
.or-divider span { font-size: 0.78rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.forgot-link { font-size: 0.82rem; color: var(--sage); float: right; margin-top: 0.25rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted); }
.auth-footer a { color: var(--forest); font-weight: 600; }
.auth-errors { background: var(--terra-pale); color: var(--terra); padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 1rem; }
.auth-errors ul { margin: 0; padding-left: 1.25rem; }
.terms-text { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.terms-text a { color: var(--sage); }
@media (max-width: 768px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-panel { min-height: 100vh; padding: 2rem 1.5rem; }
}
