body, html {
            font-size: 14px !important;
        }
        @media (max-width: 640px) {
            body, html {
                font-size: 13px !important;
            }
        }
        .login-field-input {
            width: 100%;
            border-radius: 1rem;
            border: 1px solid rgba(226, 232, 240, 0.95);
            background: rgba(255, 255, 255, 0.92);
            padding: 0.875rem 1rem 0.875rem 2.85rem;
            font-size: 0.9375rem;
            line-height: 1.5;
            color: #1e293b;
            outline: none;
            box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

            .login-field-input::placeholder {
                color: #cbd5e1;
            }

            .login-field-input:hover {
                border-color: #cbd5e1;
            }

            .login-field-input:focus {
                border-color: #3b82f6;
                background: #fff;
                box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 14px rgba(59, 130, 246, 0.08);
            }

        .login-field-wrap--pwd .login-field-input {
            padding-right: 2.75rem;
        }

        .login-pwd-toggle {
            position: absolute;
            right: 0.65rem;
            top: 50%;
            transform: translateY(-50%);
            padding: 0.4rem 0.5rem;
            border: none;
            background: transparent;
            color: #94a3b8;
            cursor: pointer;
            border-radius: 0.5rem;
            line-height: 1;
            transition: color 0.15s ease, background 0.15s ease;
        }

            .login-pwd-toggle:hover {
                color: #64748b;
                background: rgba(241, 245, 249, 0.9);
            }

        .glass-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        }

        .nav-btn {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

            .nav-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
                transition: left 0.5s;
            }

            .nav-btn:hover::before {
                left: 100%;
            }

            .nav-btn:hover {
                transform: translateY(-4px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .nav-btn:active {
                transform: translateY(-2px) scale(0.98);
            }

        .icon-box {
            position: relative;
        }

            .icon-box::after {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: inherit;
                opacity: 0;
                transition: opacity 0.3s;
                box-shadow: 0 0 20px currentColor;
            }

        .nav-btn:hover .icon-box::after {
            opacity: 0.3;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-fade-in-scale {
            animation: fadeInScale 0.6s ease-out forwards;
        }

        .logo-glow {
            position: relative;
        }

            .logo-glow::before {
                content: '';
                position: absolute;
                inset: -8px;
                background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
                border-radius: 2rem;
                z-index: -1;
                opacity: 0.5;
                filter: blur(15px);
                animation: pulse-glow 3s ease-in-out infinite;
            }

        @keyframes pulse-glow {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1);
            }

            50% {
                opacity: 0.7;
                transform: scale(1.05);
            }
        }

        .btn-shine {
            position: relative;
            overflow: hidden;
        }

            .btn-shine::after {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient( to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100% );
                transform: rotate(45deg);
                animation: shine 3s infinite;
            }

        @keyframes shine {
            0% {
                left: -50%;
            }

            20%, 100% {
                left: 150%;
            }
        }

        .logout-btn {
            position: relative;
            overflow: hidden;
        }

            .logout-btn::before {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
                opacity: 0;
                transition: opacity 0.3s;
            }

            .logout-btn:hover::before {
                opacity: 1;
            }

            .logout-btn > * {
                position: relative;
                z-index: 1;
            }

        .decorative-ring {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: ring-expand 4s ease-out infinite;
        }

        @keyframes ring-expand {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
