body {
  min-height: 100vh;
}

.auth-shell {
  padding-top: calc(72px + var(--nav-height));
  position: relative;
  z-index: 1;
}

.auth-hero {
  padding-top: 44px;
  padding-bottom: 44px;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.auth-primary {
  text-align: left;
  padding: 44px 40px;
}

.auth-title {
  max-width: 14ch;
}

.auth-lead {
  max-width: 42rem;
}

.auth-cta-row {
  justify-content: flex-start;
  margin-bottom: 0;
}

.auth-secondary-cta {
  min-width: 178px;
}

.auth-note a {
  color: var(--text-link);
}

.auth-support-panel {
  margin-top: 24px;
  padding: 24px 24px 20px;
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--surface-color) 74%, transparent);
  border: 1px solid color-mix(in srgb, var(--border-color) 70%, transparent);
  box-shadow: var(--shadow-card);
}

.auth-support-panel p:last-child {
  margin-bottom: 0;
  color: var(--text-body);
  font-size: 1rem;
}

.auth-support-eyebrow,
.auth-card-eyebrow {
  margin-bottom: 10px;
}

.auth-side {
  display: grid;
  gap: 20px;
}

.auth-card {
  display: grid;
  gap: 8px;
  min-height: 0;
}

.auth-card h2,
.auth-card h3 {
  font-size: 1.4rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.auth-card p,
.auth-card li {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.auth-list {
  margin: 4px 0 0 18px;
  padding: 0;
  list-style: disc;
}

.auth-list li + li {
  margin-top: 10px;
}

.auth-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.auth-help-note-shell {
  margin-top: 24px;
}

.auth-help-note {
  max-width: 760px;
}

.auth-footer-shell {
  padding-top: 0;
}

.auth-footer-copy {
  text-align: center;
  color: color-mix(in srgb, var(--text-body) 78%, transparent);
  font-size: 0.92rem;
}

.auth-nav-items {
  gap: 16px;
}

@media (max-width: 980px) {
  .auth-grid,
  .auth-info-grid {
    grid-template-columns: 1fr;
  }

  .auth-title {
    max-width: none;
  }
}

@media (max-width: 734px) {
  .auth-shell {
    padding-top: calc(92px + var(--nav-height));
  }

  .auth-primary {
    padding: 34px 26px;
  }

  .auth-cta-row {
    gap: 14px;
  }

  .auth-cta-row .btn-apple-primary,
  .auth-cta-row .btn-filled {
    width: 100%;
    justify-content: center;
  }

  .auth-nav-items {
    display: none;
  }
}
