/* ─── Auth Pages ─────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 61px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.auth-header { margin-bottom: 36px; }

.auth-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.auth-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.auth-sub { font-size: 0.9rem; color: var(--muted); }

.auth-error {
  background: #FDF0EB;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px 16px;
  color: #c04020;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.auth-form { display: flex; flex-direction: column; gap: 20px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.field-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: white;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.field-group input:focus { border-color: var(--accent); }

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover { background: #d4552a; }

.auth-switch {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.auth-switch a { color: var(--accent); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .auth-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
}