
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Create Account | Numbify</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body class="bg-slate-50 flex items-center justify-center min-h-screen p-4">

    <div class="animate__animated animate__fadeIn w-full max-w-lg">
        <div class="bg-white rounded-[2.5rem] shadow-2xl shadow-slate-200/50 overflow-hidden p-8 md:p-12 border border-slate-100">
            
            <div class="text-center mb-8">
                <a href="index.php" class="text-2xl font-black text-blue-600 tracking-tighter">NUMBIFY</a>
                <h1 class="text-2xl font-bold text-slate-900 mt-4">Join the Network</h1>
                <p class="text-slate-500 text-sm">Start getting virtual numbers in seconds.</p>
            </div>

            
            <form action="register.php" method="POST" class="space-y-5">
                <div class="grid grid-cols-2 gap-4">
                    <div>
                        <label class="block text-xs font-black text-slate-400 uppercase tracking-widest mb-2">Username</label>
                        <input type="text" name="username" required class="w-full p-4 bg-slate-50 border border-slate-200 rounded-2xl focus:ring-4 focus:ring-blue-500/10 focus:border-blue-500 transition-all outline-none" placeholder="johndoe123">
                    </div>
                    <div>
                        <label class="block text-xs font-black text-slate-400 uppercase tracking-widest mb-2">Nickname</label>
                        <input type="text" name="nickname" required class="w-full p-4 bg-slate-50 border border-slate-200 rounded-2xl focus:ring-4 focus:ring-blue-500/10 focus:border-blue-500 transition-all outline-none" placeholder="John">
                    </div>
                </div>

                <div>
                    <label class="block text-xs font-black text-slate-400 uppercase tracking-widest mb-2">Email Address</label>
                    <input type="email" name="email" required class="w-full p-4 bg-slate-50 border border-slate-200 rounded-2xl focus:ring-4 focus:ring-blue-500/10 focus:border-blue-500 transition-all outline-none" placeholder="hello@example.com">
                </div>

                <div>
                    <label class="block text-xs font-black text-slate-400 uppercase tracking-widest mb-2">WhatsApp (Optional)</label>
                    <input type="text" name="whatsapp" class="w-full p-4 bg-slate-50 border border-slate-200 rounded-2xl focus:ring-4 focus:ring-blue-500/10 focus:border-blue-500 transition-all outline-none" placeholder="+92 300 1234567">
                </div>

                <div>
                    <label class="block text-xs font-black text-slate-400 uppercase tracking-widest mb-2">Secure Password</label>
                    <input type="password" name="password" required class="w-full p-4 bg-slate-50 border border-slate-200 rounded-2xl focus:ring-4 focus:ring-blue-500/10 focus:border-blue-500 transition-all outline-none" placeholder="••••••••">
                </div>

                <div class="pt-2">
                    <button type="submit" class="w-full bg-slate-900 hover:bg-black text-white font-bold py-5 rounded-2xl shadow-xl transition-all transform active:scale-95">
                        Create My Account
                    </button>
                </div>
            </form>

            <p class="text-center mt-8 text-slate-500 text-sm">
                Already have an account? <a href="login.php" class="text-blue-600 font-bold hover:underline">Log in here</a>
            </p>
        </div>
    </div>

</body>
</html>