Vibrant 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>Vibrant Checkout</title> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap'); body { font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #ff6b6b, #f8e1e1); display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .checkout-container { background: #fff; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); width: 400px; max-width: 100%; animation: slideIn 0.6s ease-in-out; } .checkout-header { text-align: center; margin-bottom: 2rem; } .checkout-header h1 { font-size: 2.2rem; margin: 0; color: #ff6b6b; } .checkout-header p { color: #888; } .input-group { margin-bottom: 1.5rem; position: relative; } .input-group input { width: 91%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 5px; transition: all 0.3s ease; } .input-group input:focus { border-color: #ff6b6b; box-shadow: 0 0 8px rgba(255, 107, 107, 0.5); outline: none; } .input-group input:focus + .icon { color: #ff6b6b; } .input-group .icon { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); color: #999; transition: all 0.3s ease; } .checkout-button { display: flex; justify-content: center; } .checkout-button button { background: #ff6b6b; border: none; color: #fff; padding: 0.75rem 2.5rem; border-radius: 25px; font-size: 1rem; 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 slideIn { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } } </style> </head> <body> <div class="checkout-container"> <div class="checkout-header"> <h1>Vibrant Checkout <span>🌈</span></h1> <p>Colorful 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>