DevPlatform
Home
Components
Search
Submit
Earn
Login
Sign Up Free
Glowing Form - Preview | DevPlatform
DevPlatform
Categories
Accordion
Animation
Box Shadow
Button
Card
Footer
Form
Gallery
Hero Section
Inputs
Loader
Marquee
Modal
Modules
Navbar
Progress Bar
Radio Buttons
Search-Bar
Sections
Slider
Tab
Timeline
Toggle
Glowing Form
abhishek001
Jan 25, 2026
4
0
Share
Live Preview
Refresh
Live Editor
HTML
CSS
JS
HTML
CSS
JavaScript
1
<div class="container"> <input type="text" class="glow-input" placeholder="Type something..."> </div>
1
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', sans-serif; background: #0a0a0a; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; } .container { width: 100%; max-width: 400px; } .glow-input { width: 100%; padding: 1.25rem 1.5rem; font-size: 1.1rem; color: #00ff88; background: #1a1a1a; border: 2px solid #00ff88; border-radius: 50px; outline: none; transition: all 0.3s ease; text-align: center; } .glow-input::placeholder { color: rgba(0, 255, 136, 0.4); } .glow-input:focus { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.3), 0 0 60px rgba(0, 255, 136, 0.2), inset 0 0 20px rgba(0, 255, 136, 0.1); animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.3), 0 0 60px rgba(0, 255, 136, 0.2); } 50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.5), 0 0 50px rgba(0, 255, 136, 0.4), 0 0 80px rgba(0, 255, 136, 0.3); } } @media (max-width: 768px) { .glow-input { font-size: 1rem; padding: 1rem 1.25rem; } }
1
Comments
0
Want to comment?
Please
login
or
sign up
to post comments.
No comments yet
Be the first to comment on this component!
Comments 0
Want to comment?
Please login or sign up to post comments.
No comments yet
Be the first to comment on this component!