/**
 * Login Page Custom Styles
 * =========================
 */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111a22;
}

::-webkit-scrollbar-thumb {
    background: #344d65;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #476481;
}

/* Glass panel effect */
.glass-panel {
    background: rgba(31, 38, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Neon focus effect */
.neon-focus:focus-within {
    box-shadow: 0 0 15px rgba(23, 115, 207, 0.25);
    border-color: #1773cf;
}

/* Loading animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}
