Spaces:
Running
Running
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Universo do Conhecimento</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Montserrat', sans-serif; | |
| background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%); | |
| } | |
| .title-font { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| .input-focus:focus { | |
| box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.5); | |
| border-color: #f59e0b; | |
| } | |
| .btn-amber { | |
| background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); | |
| transition: all 0.3s ease; | |
| } | |
| .btn-amber:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2); | |
| } | |
| .btn-outline { | |
| transition: all 0.3s ease; | |
| } | |
| .btn-outline:hover { | |
| background-color: rgba(255, 255, 255, 0.1); | |
| } | |
| .divider { | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%); | |
| } | |
| .image-overlay { | |
| background: linear-gradient(90deg, rgba(30, 58, 138, 0.7) 0%, rgba(76, 29, 149, 0.5) 100%); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen text-gray-100"> | |
| <div class="container mx-auto px-4 py-8 md:py-16"> | |
| <div class="flex flex-col md:flex-row rounded-xl overflow-hidden shadow-2xl"> | |
| <!-- Left Side - Login Form --> | |
| <div class="w-full md:w-1/2 p-8 md:p-12 bg-opacity-90 bg-gray-900"> | |
| <div class="mb-8 text-center md:text-left"> | |
| <h1 class="title-font text-3xl md:text-4xl font-bold mb-2">Bem-vindo ao Universo do Conhecimento</h1> | |
| <p class="text-gray-300">Entre com seu espírito curioso e suas ideias brilhantes.</p> | |
| </div> | |
| <form class="space-y-6"> | |
| <div> | |
| <label for="username" class="block text-sm font-medium mb-1">Usuário</label> | |
| <div class="relative"> | |
| <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"> | |
| <i class="fas fa-user text-gray-400"></i> | |
| </div> | |
| <input type="text" id="username" class="input-focus w-full pl-10 pr-4 py-3 rounded-lg bg-gray-800 border border-gray-700 focus:outline-none transition duration-200" placeholder="Seu nome de usuário"> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="password" class="block text-sm font-medium mb-1">Senha</label> | |
| <div class="relative"> | |
| <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"> | |
| <i class="fas fa-lock text-gray-400"></i> | |
| </div> | |
| <input type="password" id="password" class="input-focus w-full pl-10 pr-4 py-3 rounded-lg bg-gray-800 border border-gray-700 focus:outline-none transition duration-200" placeholder="Sua senha"> | |
| </div> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center"> | |
| <input id="remember-me" name="remember-me" type="checkbox" class="h-4 w-4 rounded bg-gray-800 border-gray-700 text-amber-500 focus:ring-amber-500"> | |
| <label for="remember-me" class="ml-2 block text-sm">Lembrar de mim</label> | |
| </div> | |
| <div class="text-sm"> | |
| <a href="#" class="font-medium text-amber-400 hover:text-amber-300">Esqueceu sua senha?</a> | |
| </div> | |
| </div> | |
| <div class="space-y-4"> | |
| <button type="submit" class="btn-amber w-full py-3 px-4 rounded-lg font-semibold text-white"> | |
| Acessar | |
| </button> | |
| <button type="button" class="btn-outline w-full py-3 px-4 rounded-lg font-medium border border-gray-600"> | |
| Criar nova conta | |
| </button> | |
| </div> | |
| </form> | |
| <div class="mt-8"> | |
| <div class="divider my-6"></div> | |
| <div class="flex justify-center space-x-4"> | |
| <button class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-google text-amber-400"></i> | |
| </button> | |
| <button class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-github text-amber-400"></i> | |
| </button> | |
| <button class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-linkedin-in text-amber-400"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <p class="mt-8 text-center text-sm text-gray-400"> | |
| Aqui, tecnologia encontra poesia. Crie sua conta e comece a transformar o mundo. | |
| </p> | |
| </div> | |
| <!-- Right Side - Image --> | |
| <div class="hidden md:block md:w-1/2 relative"> | |
| <div class="absolute inset-0 image-overlay"></div> | |
| <img src="https://images.unsplash.com/photo-1544717305-2782549b5136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Homem maduro em ambiente criativo" class="w-full h-full object-cover"> | |
| <div class="absolute bottom-0 left-0 p-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-amber-500 flex items-center justify-center mr-3"> | |
| <i class="fas fa-quote-left text-white text-xl"></i> | |
| </div> | |
| <div> | |
| <p class="text-lg italic">"O código é poesia,<br>a arquitetura é filosofia."</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-8 h-8 rounded-full bg-white flex items-center justify-center"> | |
| <i class="fas fa-book text-purple-800 text-sm"></i> | |
| </div> | |
| <div class="w-8 h-8 rounded-full bg-white flex items-center justify-center"> | |
| <i class="fas fa-laptop-code text-purple-800 text-sm"></i> | |
| </div> | |
| <div class="w-8 h-8 rounded-full bg-white flex items-center justify-center"> | |
| <i class="fas fa-music text-purple-800 text-sm"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=gallabs/login-lucas" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |