/* Fristående sidor för mejllänkar (/verifiera/, /aterstall/).
   Ärver alla tokens från landing.css — det här är bara layouten. */

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.auth-card h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.auth-lead {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.auth-card form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.auth-card form[hidden] { display: none; }

.auth-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.auth-input {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.auth-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.auth-input[aria-invalid="true"] { border-color: var(--danger); }

.auth-card .btn-block { margin-top: 8px; }

.auth-msg {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.auth-msg[hidden] { display: none; }
.auth-msg.is-error { color: var(--danger); }
.auth-msg.is-ok { color: var(--ok); }

.auth-foot {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-subtle);
}
.auth-foot[hidden] { display: none; }
.auth-foot a { color: var(--accent); }
.auth-foot a:hover { text-decoration: underline; }
