

We respect your privacy, Unsubscribe at any time.
/* Form Input Styling */ input[type="text"], input[type="email"], input[type="tel"], textarea, select { background: #000000; /* Black background */ color: #ffffff; /* White text */ font-family: 'Montserrat', sans-serif; font-size: 16px; border: 2px solid transparent; border-radius: 30px; /* Rounded pill style */ padding: 12px 16px; /* Neon Gradient Border */ background-image: linear-gradient(#000000, #000000), linear-gradient(90deg, #ff007f, #ff00ff, #00ffe5, #00ff6a); background-origin: border-box; background-clip: padding-box, border-box; } /* Placeholder Text */ input::placeholder, textarea::placeholder { color: #cccccc; opacity: 0.8; } /* Checkbox + Radio Buttons */ input[type="checkbox"], input[type="radio"] { accent-color: #ff007f; /* Neon pink */ } /* Submit Button */ button, input[type="submit"] { background: linear-gradient(90deg, #ff007f, #00ffe5); color: #000000; font-weight: bold; border: none; border-radius: 30px; padding: 12px 24px; cursor: pointer; transition: all 0.3s ease; } button:hover, input[type="submit"]:hover { background: linear-gradient(90deg, #00ffe5, #ff007f); }
button { box-shadow: 0 0 12px #ff0080, 0 0 24px #00ffff; }
/* Neon gradient button (same style for all buttons) */ button, .button { background: linear-gradient(90deg, #ff007f, #00f0ff); color: #ffffff !important; font-weight: bold; font-size: 18px; border-radius: 50px; border: none; padding: 12px 30px; box-shadow: 0 0 10px #ff007f, 0 0 20px #00f0ff; transition: all 0.3s ease-in-out; text-align: center; } /* Hover effect */ button:hover, .button:hover { box-shadow: 0 0 20px #ff007f, 0 0 40px #00f0ff; transform: scale(1.05); }