/* ------------------ Animaciones ------------------ */
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------ Página Thank You ------------------ */
body {
  background-color: #f2fff4;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.thank-you-container {
  background-color: #ffffff;
  border: 2px solid #4CAF50;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  animation: fadeInBottom 1s ease-out forwards;
  opacity: 0; /* para animación */
}

.thank-you-container h1 {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.thank-you-container a {
  text-decoration: none;
  font-size: 1.1rem;
  color: white;
  background-color: #4CAF50;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.thank-you-container a:hover {
  background-color: #388e3c;
}
