Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Signup Form</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-slate-900 flex items-center justify-center min-h-screen p-6 antialiased"> <div class="w-full max-w-xl"> <div class="bg-white/5 backdrop-blur-3xl rounded-[3rem] shadow-2xl p-12 lg:p-16 border border-white/10 ring-1 ring-black/5 relative overflow-hidden group"> <!-- Glow effect --> <div class="absolute -top-32 -right-32 h-64 w-64 bg-indigo-500 rounded-full blur-[100px] opacity-20 group-hover:scale-150 transition-transform duration-700"></div> <div class="relative z-10"> <div class="mb-12"> <h1 class="text-4xl md:text-5xl font-black text-white tracking-tighter mb-4 italic">Join the Hub.</h1> <p class="text-indigo-100/40 font-bold uppercase tracking-widest text-xs">Start your 14-day free trial session</p> </div> <form class="space-y-8"> <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> <div> <label class="block text-[10px] font-black text-indigo-300 uppercase tracking-widest mb-3">First Name</label> <input type="text" class="w-full h-14 bg-white/5 border border-white/10 rounded-2xl px-6 font-bold text-white focus:outline-none focus:border-indigo-500 focus:bg-white/10 transition-all"> </div> <div> <label class="block text-[10px] font-black text-indigo-300 uppercase tracking-widest mb-3">Last Name</label> <input type="text" class="w-full h-14 bg-white/5 border border-white/10 rounded-2xl px-6 font-bold text-white focus:outline-none focus:border-indigo-500 focus:bg-white/10 transition-all"> </div> </div> <div> <label class="block text-[10px] font-black text-indigo-300 uppercase tracking-widest mb-3">Corporate Email</label> <input type="email" class="w-full h-14 bg-white/5 border border-white/10 rounded-2xl px-6 font-bold text-white focus:outline-none focus:border-indigo-500 focus:bg-white/10 transition-all"> </div> <div> <label class="block text-[10px] font-black text-indigo-300 uppercase tracking-widest mb-3">Password Strategy</label> <input type="password" class="w-full h-14 bg-white/5 border border-white/10 rounded-2xl px-6 font-bold text-white focus:outline-none focus:border-indigo-500 focus:bg-white/10 transition-all"> </div> <div class="flex items-start"> <div class="flex items-center h-5"> <input type="checkbox" class="h-5 w-5 rounded-md border-white/10 bg-white/5 text-indigo-600 focus:ring-indigo-600 cursor-pointer"> </div> <div class="ml-4 text-xs"> <label class="font-bold text-indigo-100/60 uppercase tracking-widest leading-relaxed">I agree to the <a href="##" class="text-indigo-400 underline underline-offset-4 decoration-2">Service Protocols</a> and Data usage privacy.</label> </div> </div> <button type="submit" class="w-full h-18 bg-indigo-600 text-white rounded-[2rem] font-black text-sm uppercase tracking-widest shadow-2xl shadow-indigo-900/40 hover:bg-white hover:text-slate-900 transition-all active:scale-95 cursor-pointer"> Initialize Account </button> </form> </div> </div> </div> </body> </html>