.page {
  padding-block: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 460px;
  margin-inline: auto;
}
.head { display: flex; flex-direction: column; gap: var(--space-2); text-align: center; }
.title { font-size: var(--text-2xl); letter-spacing: -0.01em; }
.lede { color: var(--color-text-subtle); }

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  /* Lifted off the page rather than outlined flat against it — this is the
     one thing on the screen and should read as the thing to act on. */
  box-shadow: var(--shadow-lg);
}

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

.links {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: var(--text-base);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-subtle);
}

@media (max-width: 520px) {
  .pair { grid-template-columns: 1fr; }
}
