body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

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

.thank-you-lead {
  font-size: var(--font-size-lg);
  color: var(--gray-700);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  color: var(--gray-700);
}

.thank-you-actions {
  margin-top: var(--space-8);
  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-card {
    padding: var(--space-12) var(--space-12);
  }

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

  .thank-you-btn-main,
  .thank-you-btn-secondary {
    width: auto;
    min-width: 200px;
  }
}
