.thank-you-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

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

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

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

.thank-you-text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

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

@media (max-width: 640px) {
  .thank-you-main {
    min-height: calc(100vh - 120px);
  }

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

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