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

.thank-you-section {
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
}

.thank-you-card {
  max-width: 720px;
  margin: 0 auto;
}

.thank-you-card__inner {
  text-align: center;
}

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

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

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

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

.thank-you-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .thank-you-section {
    min-height: calc(100vh - 6rem);
  }

  .thank-you-card {
    padding-inline: 0;
  }

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

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