/* ===== AUTH PAGES ===== */
.auth-body {
  background: linear-gradient(145deg, var(--sky-pale) 0%, #c2e3f0 50%, var(--sky-pale) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-container {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: center;
}
.auth-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(112,174,205,0.18), 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
  animation: authFadeIn .5s ease-out;
}
@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.auth-logo {
  display: inline-block;
  margin-bottom: 28px;
}
.auth-logo img {
  height: 49px;
  width: auto;
}
.auth-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.auth-subtitle {
  color: var(--text-mid);
  font-size: .95rem;
  margin-bottom: 28px;
}
.auth-form {
  text-align: left;
}
.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.auth-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.auth-links {
  margin-top: 24px;
  font-size: .88rem;
  color: var(--text-light);
}
.auth-links a {
  color: var(--plum);
  text-decoration: none;
  font-weight: 500;
}
.auth-links a:hover {
  text-decoration: underline;
}
.auth-divider {
  margin: 0 8px;
  color: var(--border);
}
.auth-back {
  display: inline-block;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--text-light);
  text-decoration: none;
}
.auth-back:hover {
  color: var(--sky-dark);
}
@media (max-width: 480px) {
  .auth-card { padding: 32px 24px; }
}
