.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.thankyou-card {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--space-6);
  text-align: center;
}

.thankyou-title {
  margin-bottom: var(--space-3);
}

.thankyou-lead {
  font-size: var(--font-size-lg);
  color: var(--gray-100);
}

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

@media (min-width: 640px) {
  .thankyou-card {
    padding: var(--space-8);
  }

  .thankyou-actions {
    flex-direction: row;
  }
}
