.thank-you {
  min-height: calc(100vh - 4.25rem);
  display: flex;
  align-items: center;
}

.thank-you__container {
  max-width: 720px;
  text-align: center;
}

.thank-you__header {
  margin-bottom: var(--space-6);
}

.thank-you__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

.thank-you__title {
  font-size: var(--font-size-4xl);
}

.thank-you__body p {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.thank-you__actions {
  margin-top: var(--space-8);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .thank-you {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .thank-you__title {
    font-size: var(--font-size-3xl);
  }

  .thank-you__actions {
    flex-direction: column;
  }

  .thank-you__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
