.thank-you-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.thank-you-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

.thank-you-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.thank-you-btn,
.thank-you-btn-secondary {
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .thank-you-main {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }

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

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

@media (min-height: 700px) {
  .thank-you-main {
    min-height: calc(100vh - 160px);
  }
}
