.thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

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

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

.thankyou__message,
.thankyou__next {
  margin-bottom: var(--space-4);
}

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

@media (max-width: 480px) {
  .thankyou__container {
    text-align: left;
  }

  .thankyou__actions {
    justify-content: flex-start;
  }
}
