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

.thank-you__container {
  max-width: 720px;
}

.thank-you__card {
  text-align: center;
}

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

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

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

.thank-you__next {
  font-size: var(--font-size-sm);
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: var(--space-6);
}

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

@media (max-width: 600px) {
  .thank-you {
    padding-block: var(--space-16);
    min-height: auto;
  }

  .thank-you__card {
    padding: var(--space-6);
  }

  .thank-you__lead,
  .thank-you__text,
  .thank-you__next {
    text-align: left;
  }

  .thank-you__actions {
    flex-direction: column;
    align-items: stretch;
  }

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