.auth-page {
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, var(--moss) 0%, #1e4a0e 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
}
.auth-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.auth-logo img { height: 64px; width: 64px; border-radius: 50%; object-fit: cover; }
.auth-title { text-align: center; margin-bottom: 1.5rem; font-family: var(--font-serif); }
.auth-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.auth-switch { text-align: center; font-size: .9rem; color: var(--muted); }
.auth-switch a { color: var(--bark); font-weight: 600; }
