WEBLEB
Home
Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Login
1025
logicalbug531
Open In Editor
Publish Your Code
Recommended
6 June 2023
Login/Register Form
8 September 2024
Login Hacker
19 May 2025
KEVAKIB LOGIN
HTML
Copy
COCCAINA MUZZ
Enter your name
CSS
Copy
/* Replace with your CSS Code (Leave empty if not needed) */ <style> *{ padding: 0; margin: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body{ min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #191825; } .input-field{ position: relative; } .input-field input{ width: 350px; height: 60px; border-radius: 6px; font-size: 18px; padding: 0 15px; border: 2px solid #fff; background: transparent; outline: none; color: #fff; } .input-field label{ position: absolute; top: 50%; left: 15px; transform: translateY(-50%); color: #fff; font-size: 19px; pointer-events: none; transition: .3s; } input:focus{ border: 2px solid #1cd679; } input:focus ~ label, input:valid ~ label{ top: 0; font-size: 16px; padding: 0 10px; background: #191825; } </body> </html>
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */ 1 2