        /* ===== BACKGROUND ANIMATO PREMIUM ===== */
        body.account-page {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(-45deg, #ff8a00, #e52e71, #9c27b0, #673ab7);
            background-size: 400% 400%;
            animation: gradientMove 18s ease infinite;
            min-height: 100vh;
            overflow-x: hidden;
            font-size: 17px;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* ===== FORM CARD CON GLOW ===== */
        .login-content.user-login {
            backdrop-filter: blur(14px);
            background: rgba(121, 121, 121, 0.12);
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.05),
                0 10px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            color: #fff;
            transition: all 0.5s ease;
            animation: fadeIn 1.2s ease forwards;
            padding: 2.5rem;
        }

        .login-content.user-login::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 22px;
            padding: 2px;
            background: linear-gradient(130deg, rgba(255, 138, 0, 0.7), rgba(229, 46, 113, 0.7), rgba(156, 39, 176, 0.7));
            background-size: 300% 300%;
            animation: borderGlow 10s ease infinite;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        @keyframes borderGlow {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-content.user-login:hover {
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 0 40px rgba(255, 138, 0, 0.25), 0 10px 50px rgba(0, 0, 0, 0.4);
        }

        /* ===== LOGO FLOAT ===== */
        .login-logo img {
            height: 75px;
            margin-bottom: 10px;
            filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
            animation: floatLogo 6s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-6px);
            }
        }

        /* ===== TESTI ===== */
        .login-userheading h3 {
            font-weight: 700;
            font-size: 30px;
            color: #fff;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
            margin-bottom: 10px;
        }

        .login-userheading h4 {
            color: rgba(255, 255, 255, 0.9);
            font-size: 17px;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .text-orange {
            color: #ffc65dff !important;
            font-weight: 600;
        }

        /* ===== INPUT ===== */
        .input-group .form-control {
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 17px;
            padding: 12px 16px;
            transition: all 0.3s ease;
            border-radius: 10px 0 0 10px;
        }

        .input-group .form-control:focus {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 8px rgba(255, 214, 138, 0.3);
        }

        .input-group-text {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #fff;
            font-size: 20px;
            padding: 0 15px;
            border-radius: 0 10px 10px 0;
        }

        .form-control::placeholder {
            color: #eee;
        }

        /* ===== BUTTONS ===== */
        .btn.btn-primary {
            background: linear-gradient(90deg, #ff8a00, #e52e71);
            border: none;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: 0.5px;
            padding: 12px 0;
            transition: all 0.3s ease;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(229, 46, 113, 0.35);
        }

        .btn.btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 25px rgba(229, 46, 113, 0.55);
        }

        /* ===== SOCIAL ICONS ===== */
        .btn-social {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 22px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .btn-social:hover {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        .btn-social.bg-facebook {
            background: #1877f2;
        }

        .btn-social.bg-google {
            background: #ea4335;
        }

        .btn-social.bg-apple {
            background: #000;
        }

        /* ===== LABELS ===== */
        .form-label {
            color: #fff;
            font-weight: 500;
            font-size: 17px;
            margin-bottom: 6px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .login-content.user-login {
                padding: 25px 18px;
            }

            .login-userheading h3 {
                font-size: 26px;
            }

            .login-userheading h4 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .login-logo img {
                height: 65px;
            }

            .btn.btn-primary {
                font-size: 16px;
            }

            .form-label,
            .form-control {
                font-size: 16px;
            }
        }

        /* ===== REGISTER CALLOUT ===== */
        .register-callout {
            text-align: center;
            margin-top: 25px;
        }

        .register-text {
            font-size: 18px;
            color: rgba(0, 0, 0, 0.9);
            font-weight: 200;
            letter-spacing: 0.3px;
        }

        .register-link {
            color: #ffc65dff;
            font-weight: 700;
            position: relative;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .register-link::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #ffd68a;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .register-link:hover {
            color: #ff8800ff;
        }

        .register-link:hover::after {
            width: 100%;
        }

        /* Mobile scaling */
        @media (max-width: 480px) {
            .register-text {
                font-size: 16px;
            }
        }