.auth-body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-shell {
  width: min(100%, 520px);
}

.auth-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--shadow);
}

.auth-brand {
  margin-bottom: 32px;
}

.auth-copy h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.auth-copy p:last-child {
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.55;
}

.auth-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.auth-form button {
  min-height: 48px;
  border-radius: var(--radius);
  color: white;
  background: var(--accent-dark);
  font-weight: 800;
}

.auth-form button:hover {
  background: var(--accent);
}

.auth-foot {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-foot a {
  color: var(--accent-dark);
  font-weight: 800;
}

.auth-message {
  min-height: 22px;
  margin-top: 16px;
  color: var(--danger);
  font-size: 14px;
}
