
/* ✅ GrowChamp Form Styling - Enhanced */
#leadForm {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Arial, sans-serif;
}

#leadForm input,
#leadForm select,
#leadForm textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

#leadForm button {
  background-color: #28a745;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  animation: blink 1.2s infinite;
  transition: background-color 0.3s ease;
}

#leadForm button:hover {
  background-color: #218838;
}

#leadForm button,
#leadForm button.w-button {
  background-color: #28a745 !important;
  color: white !important;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  animation: blink 1.2s infinite;
  transition: background-color 0.3s ease;
}

#leadForm button:hover {
  background-color: #218838 !important;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
