.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.thank-you__container {
  text-align: center;
  max-width: 640px;
}

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

.thank-you__message,
.thank-you__next {
  margin-left: auto;
  margin-right: auto;
}

.thank-you__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.thank-you__btn {
  min-width: 220px;
}

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

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

  .thank-you__btn {
    width: 100%;
  }
}
