/* auth-modern.css - Premium Authentication Design System */

body { 
    background: #020617;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.input-glass:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    outline: none;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 10s infinite;
}

.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

.text-glow {
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal { animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Register Page Specifics */
.register-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-card {
    width: 100%;
    max-width: 1100px;
    height: auto;
    max-height: 98vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
    .register-container { padding: 2rem; }
    .main-card { flex-direction: row; height: 680px; border-radius: 3rem; }
}

.hero-section {
    background: linear-gradient(135deg, #064e3b, #065f46, #022c22);
    color: white;
}

@keyframes fadeInIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeInIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
