/* Premium Portal Login Stylesheet (Light Theme) */

body {
    background-color: #f8fafc; /* Clean modern light slate-50 */
}

/* Glassmorphism Auth Card */
.premium-login-card {
    background: rgba(255, 255, 255, 0.75); /* Pure white glass with transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(241, 245, 249, 0.9); /* slate-100 */
}

/* Smooth Input Focus Transformations */
input:focus {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4) !important;
}

/* Slide and Scale Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-entrance {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
