.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.thank-you__card {
  max-width: 640px;
  margin: 0 auto;
}

.thank-you__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.thank-you__subtitle,
.thank-you__next {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.thank-you__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

.thank-you__btn-main,
.thank-you__btn-secondary {
  width: 100%;
}

@media (min-width: 640px) {
  .thank-you__title {
    font-size: var(--text-4xl);
  }

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

  .thank-you__btn-main,
  .thank-you__btn-secondary {
    width: auto;
    min-width: 220px;
  }
}
