/* ===== Auth Pages ===== */
.auth-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 3rem 0;
}
.auth-container { max-width: 520px; }

.auth-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-ornament {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.auth-title {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: 0.35rem;
}
.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Password field ===== */
.password-wrap {
  position: relative;
}
.password-wrap .form-input {
  padding-right: 2.75rem;
}
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.password-toggle:hover { color: var(--gold); }

/* ===== Divider ===== */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

/* ===== Switch link ===== */
.auth-switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.auth-switch-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-switch-link:hover { color: var(--gold-hover); }

/* Nav user styles are in components.css (loaded globally) */

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .auth-card { padding: 2rem 1.25rem; }
}
