WEBLEB
Home
Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
3D Login page
2222
angrybird76
Open In Editor
Publish Your Code
Recommended
10 August 2024
HTML Login Form Code
23 May 2025
3d login hamburger menü
22 May 2025
3d Three figures Sliders
HTML
Copy
<
3D Login Page
Login
Login
!-- Replace with your HTML Code (Leave empty if not needed) -->
CSS
Copy
body { font-family: Arial, sans-serif; background-color: #0e7bad; } .container { width: 640px; margin: 100px auto; perspective: 1000px; } .login-form { position: relative; width: 100%; height: 400px; background-color: #1154ac; border: 1px solid #125fb8; border-radius: 10px; box-shadow: #109e34; transform: rotateY(0deg); transition: transform 0.5s; } .login-form:hover { transform: rotateY(30deg); } h1 { margin-top: 0; font-size: 24px; font-weight: bold; color: #000000; } form { padding: 35px; } input[type="text"], input[type="password"] { width: 100%; height: 40px; margin-bottom: 20px; padding: 8px; border: 1px solid #000508; border-radius: 5px; } button[type="submit"] { width: 100%; height: 40px; background-color: #4CAF50; color: #109e34; border: none; border-radius: 5px; cursor: pointer; } button[type="submit"]:hover { background-color: #3e8e41; } .progress-bar { width: 100%; height: 10px; background-color: #0b72a1; border-radius: 5px; } .progress { width: 50%; height: 10px; background-color: #021b3f; border-radius: 5px; } /* Replace with your CSS Code (Leave empty if not needed) */
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */