Neon Checkout - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Neon Checkout</title> <style> @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500&display=swap'); body { font-family: 'Orbitron', sans-serif; background: #000; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .checkout-container { background: rgba(0, 0, 0, 0.8); padding: 2rem; border-radius: 20px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); width: 450px; max-width: 100%; animation: glow 1s ease-in-out infinite alternate; } .checkout-header { text-align: center; margin-bottom: 2rem; color: #0f0; } .checkout-header h1 { font-size: 2.5rem; margin: 0; } .checkout-header p { color: #0f0; } .input-group { margin-bottom: 1.5rem; position: relative; } .input-group input { width: 91%; padding: 1rem; border: none; border-radius: 10px; background: rgba(0, 0, 0, 0.8); color: #0f0; box-shadow: 0 0 15px rgba(0, 255, 0, 0.5); transition: all 0.3s ease; } .input-group input:focus { outline: none; box-shadow: 0 0 25px rgba(0, 255, 0, 1); } .input-group input:focus + .icon { color: #0f0; } .input-group .icon { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); color: #070; transition: all 0.3s ease; } .checkout-button { display: flex; justify-content: center; } .checkout-button button { background: #0f0; border: none; color: #000; padding: 0.75rem 2.5rem; border-radius: 50px; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1; } .checkout-button button:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.2); z-index: -1; transition: all 0.3s ease; } .checkout-button button:hover:before { opacity: 0; } .checkout-button button:active { transform: scale(0.97); } @keyframes glow { from { box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); } to { box-shadow: 0 0 20px rgba(0, 255, 0, 1); } } </style> </head> <body> <div class="checkout-container"> <div class="checkout-header"> <h1>Neon Checkout <span>💡</span></h1> <p>Bright and secure payment</p> </div> <form> <div class="input-group"> <input type="text" placeholder="Full Name" required> </div> <div class="input-group"> <input type="text" placeholder="Card Number" required> </div> <div class="input-group"> <input type="text" placeholder="MM/YY" required> </div> <div class="input-group"> <input type="password" placeholder="CVV" required> </div> <div class="checkout-button"> <button type="submit">Pay Now <span>🔆</span></button> </div> </form> </div> </body> </html>