/* ══════════════════════════════════════
   AUTH PAGINA'S — mobile first
   ══════════════════════════════════════ */

.auth-wrap {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.25rem 4rem;
  background: var(--surface);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(30,42,58,0.06);
}

.auth-card--wide {
  max-width: 580px;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.auth-icon-large {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: .75rem;
}

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  margin-bottom: .4rem;
  letter-spacing: -.4px;
}

.auth-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* ── Formulier ── */
.form-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin: 1.5rem 0 .75rem;
}
.form-section-label:first-of-type { margin-top: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-label-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--teal);
  text-decoration: none;
}
.form-label-link:hover { text-decoration: underline; }

.form-input {
  width: 100%;
  padding: .7rem .9rem;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,122,106,.1);
  background: white;
}
.form-input.is-invalid {
  border-color: var(--coral);
}
.form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(201,74,40,.1);
}

.form-error {
  font-size: 12px;
  color: var(--coral);
}

.form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-check label {
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

/* Twee kolommen op brede schermen */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 15px;
  margin-top: .25rem;
}

.auth-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 1.25rem;
}
.auth-footer-text a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.auth-footer-text a:hover { text-decoration: underline; }

/* ── Alerts ── */
.alert {
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.alert-success {
  background: var(--teal-light);
  border: 1px solid rgba(10,122,106,.2);
  color: #055a4d;
}
.alert-info {
  background: var(--gold-light);
  border: 1px solid rgba(212,144,10,.2);
  color: #6b4400;
}
.alert code {
  background: rgba(0,0,0,.06);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
}

/* ══════════════════════════════════════
   BREAKPOINT: sm — 480px
   ══════════════════════════════════════ */
@media (min-width: 480px) {
  .auth-card  { padding: 2.5rem 2rem; }
  .form-row   { flex-direction: row; gap: 1rem; }
  .form-row .form-group { flex: 1; }
}