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

.thank-you-card {
  max-width: 40rem;
  width: 100%;
  text-align: center;
  margin-inline: auto;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

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

.thank-you-card p {
  margin-bottom: var(--space-3);
}

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

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

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

  .thank-you-actions .btn {
    width: 100%;
  }
}
