/* 🌿 COMPILED TAILWIND + CUSTOM CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* Tailwind base */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; font-family: 'Poppins', Arial, sans-serif; }
body { 
    margin: 0;
    font-family: 
    inherit; line-height: 
    inherit; background: #0f172a; 
    color: #fff; 
    overflow-x: hidden; }

/* Tailwind utilities (essential subset for your page) */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.min-h-screen { min-height: 100vh; }
.bg-white { background-color: rgba(255, 255, 255, 1); }
.text-center { text-align: center; }
.rounded-xl { border-radius: 1rem; }
.rounded { border-radius: 0.625rem; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.font-bold { font-weight: 700; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.bg-green-500 { background-color: #22c55e; }
.bg-blue-500 { background-color: #2563eb; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-blue-600:hover { background-color: #1d4ed8; }
.text-white { color: #fff; }
.font-semibold { font-weight: 600; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.gap-4 { gap: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* 🎥 BACKGROUND VIDEO */
#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* 🌑 DARK OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
    z-index: -1;
}

/* 📦 CENTER CONTAINER */
.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 💎 GLASS CARD */
.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    text-align: center;
    width: 350px;
    animation: fadeIn 1.2s ease;
}

/* 🏷 TITLE */
.card h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
}

/* 📝 SUBTEXT */
.card p {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 2rem;
}

/* 🔘 BUTTON BASE */
.btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

/* ✅ LOGIN BUTTON */
.btn-login {
    background: linear-gradient(135deg, #d5d7d6, #1b1c1b);
}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34,197,94,0.4);
}

/* 🔵 REGISTER BUTTON */
.btn-register {
    background: linear-gradient(135deg, #212222, #2563eb);
}
.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59,130,246,0.4);
}

/* ✨ ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* button spacing */
.buttons {
    margin-top: 20px;
}

.features {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: -10px;
    margin-bottom: 20px;
}