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

.thank-you-panel {
  max-width: 640px;
  margin-inline: auto;
}

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

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

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

.thank-you-actions {
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

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

  .thank-you-panel {
    padding: var(--space-6) var(--space-4);
  }

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

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