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

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

.thank-you__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

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

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.thank-you__btn-main {
  min-width: 210px;
}

.thank-you__btn-secondary {
  min-width: 210px;
}

@media (max-width: 640px) {
  .thank-you {
    text-align: left;
  }

  .thank-you__actions {
    justify-content: stretch;
  }

  .thank-you__btn-main,
  .thank-you__btn-secondary {
    width: 100%;
  }
}
