/* ── Login page styles ── */
/* .auth-card sits inside the shared .brand-card (base.css); narrow it down
   so the auth form isn't stretched to the full page width. */
.brand-card:has(> .auth-card) {
  max-width: 440px;
  margin: 1rem auto;
}

.auth-card h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B262C;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E2DDD6;
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A6A70;
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #D9D4CC;
  border-radius: 7px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #1B262C;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: #B89356;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,147,86,0.14);
}
.form-control::placeholder { color: #AAA49C; }

.field-error {
  color: #B84040;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.auth-error {
  background: rgba(184,64,64,0.08);
  border: 1px solid rgba(184,64,64,0.25);
  color: #B84040;
  border-radius: 7px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}
