* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #3498db, #2ecc71); /* Blue to Green Gradient */ display: flex; justify-content: center; align-items: center; height: 100vh; } .form-container { background-color: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 15px; box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); width: 350px; backdrop-filter: blur(10px); } h2 { text-align: center; margin-bottom: 20px; color: #fff; font-weight: bold; text-transform: uppercase; } label { display: block; margin-bottom: 5px; color: #fff; font-weight: bold; letter-spacing: ...
Comments
Post a Comment