/* Thank You Page Styles */
.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.thank-you-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.thank-you-content {
  text-align: center;
  padding: 0;
}

.thank-you-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.confirmation-details {
  margin-bottom: 2rem;
}

.confirmation-details p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.registration-message {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

.email-confirmation {
  color: #666;
  font-size: 1rem;
}

.thank-you-actions {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-actions .button.-default {
  min-width: 380px;
}

.thank-you-actions .button.-default:hover {
  background-color: #a0522d;
  border-color: #a0522d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 2rem 1.5rem;
  }

  .thank-you-content h2 {
    font-size: 2rem;
  }

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

  .thank-you-actions .button.-default {
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .thank-you-content h2 {
    font-size: 1.75rem;
  }

  .confirmation-details p {
    font-size: 1rem;
  }

  .thank-you-actions .button.-default {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    padding: 10px 20px;
  }
}
