  
.colorful-form {
  background: linear-gradient(135deg, #e0f7fa 0%, #ffecb3 70%);
  border-radius: 22px;
  border: 3px solid #38e3ad;
  color: #094c72;
  font-weight: 600;
  font-size: 1.07rem;
}
.form-floating>label {
  color: #2074ff;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 0.85rem;
}
.form-control,
.form-select,
textarea.form-control {
  background: rgba(255 255 255 / 0.98);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: #065a87;
  font-weight: 600;
}
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  background: #fff;
  border-color: #38e3ad;
  box-shadow: 0 0 12px 3px #38e3adaa;
  color: #2074ff;
}
.form-control:focus~label,
textarea.form-control:focus~label,
.form-control:not(:placeholder-shown)~label,
textarea.form-control:not(:placeholder-shown)~label {
  color: #2074ff;
  font-size: 0.85rem;
  top: 0.3rem;
  left: 0.85rem;
  background: #d2f5ffb0;
  border-radius: 6px;
  padding: 0 0.3rem;
}
textarea.form-control {
  padding-top: 1.1rem;
  padding-left: 1rem;
}
.form-label {
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}
.btn-gradient-animated {
  background: linear-gradient(270deg, #2074ff, #38e3ad, #ffd166, #38e3ad, #2074ff);
  background-size: 1000% 1000%;
  color: #fff;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 60px;
  border: none;
  transition: box-shadow 0.4s ease;
  animation: gradientShift 8s ease infinite;
  position: relative;
}
.btn-gradient-animated:hover,
.btn-gradient-animated:focus {
  box-shadow: 0 0 30px #ffd166dd, 0 8px 38px #38e3adbb;
  animation-play-state: paused;
  outline: none;
  color: #094c72;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}
.btn-gradient-animated .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  background-color: rgba(255, 188, 90, 0.27);
  width: 110px;
  height: 110px;
  left: 50%;
  top: 50%;
  pointer-events: none;
}
@keyframes rippleEffect {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}