WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Página de inicio de sesión 3D
2372
angrybird76
Abrir en el editor
Publica tu código
Recomendado
5 July 2025
Ejemplo de selector de fecha HTML
21 September 2025
Código de diseño HTML CSS Sunflower
11 May 2024
Activar y desactivar
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) */