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

.thank-you-section {
  padding-block: var(--space-64);
}

.thank-you-container {
  display: flex;
  justify-content: center;
}

.thank-you-card {
  max-width: 640px;
  width: 100%;
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.thank-you-title {
  margin-bottom: var(--space-16);
}

.thank-you-message {
  margin-bottom: var(--space-16);
  color: var(--color-text-muted);
}

.thank-you-next {
  margin-bottom: var(--space-32);
  color: var(--color-text);
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  justify-content: center;
}

@media (min-width: 640px) {
  .thank-you-card {
    padding: var(--space-40);
  }

  .thank-you-actions {
    flex-direction: row;
  }
}
