body {
  background: linear-gradient(135deg, #ffcc70, #ff6f91, #845ec2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  text-align: center;
  padding: 50px;
  margin: 0;
  background-size: 400% 400%;
  animation: fiestaBackground 20s ease infinite;
}

@keyframes fiestaBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  background: rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  max-width: 480px;
  margin: auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 4px dashed #fff176;
}

h1 {
  font-size: 2.75em;
  margin-bottom: 20px;
  color: #fff176;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

form label {
  display: block;
  font-weight: bold;
  margin: 15px 0 5px;
  color: #fffae5;
}

form input[type="email"],
form input[type="tel"] {
  width: 90%;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 12px;
  font-size: 1em;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

form button {
  padding: 14px 30px;
  background-color: #f72585;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

form button:hover {
  background-color: #b5179e;
  transform: scale(1.05);
}

/* Fiesta flair 
form button::after {
  content: " 🎉";
}*/

input::placeholder {
  color: #999;
}
