.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
  text-align: center;
}

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

.thank-you-message,
.thank-you-next {
  font-size: var(--font-size-md);
}

.thank-you-next {
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

@media (max-width: 600px) {
  .thank-you-card {
    padding: var(--space-6);
  }

  .thank-you-message,
  .thank-you-next {
    font-size: var(--font-size-base);
  }
}
