        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            font-family: 'Roboto', sans-serif;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 54, 118, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 54, 118, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            max-height: 100vh;
            padding: 1rem;
            width: 100%;
            overflow: hidden;
        }

        .login-card {
            display: flex;
            width: 100%;
            max-width: 1400px;
            background: #fff;
            border-radius: 24px;
            box-shadow: 
                0 32px 64px rgba(0, 54, 118, 0.15),
                0 16px 32px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            backdrop-filter: blur(20px);
            margin: 0 auto;
            border: 1px solid rgba(0, 54, 118, 0.1);
            position: relative;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .info-section {
            background: linear-gradient(135deg, 
                #003676 0%,
                #1a4480 25%,
                #2d5a9b 50%,
                #4070b6 75%,
                #5385d1 100%
            );
            color: white;
            padding: 40px 30px;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .info-section .owl-carousel {
            position: relative;
            z-index: 5;
        }

        .info-section .owl-carousel .owl-stage-outer {
            overflow: hidden;
            position: relative;
        }

        .info-section .owl-carousel .owl-stage {
            display: flex;
            align-items: center;
        }

        .info-section .owl-carousel .owl-item {
            opacity: 0.7;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
        }

        .info-section .owl-carousel .owl-item.active {
            opacity: 1;
            transform: scale(1);
        }

        .info-section .owl-carousel .owl-item.center {
            opacity: 1;
            transform: scale(1);
        }

        .info-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .info-section .owl-carousel .item {
            padding: 35px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin: 0 10px;
            box-shadow: 
                0 16px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .info-section .owl-carousel .item h2,
        .info-section .owl-carousel .item p,
        .info-section .owl-carousel .item ul {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .info-section .owl-carousel .owl-item.active .item {
            z-index: 2;
        }

        .info-section .owl-carousel .owl-item.active .item h2,
        .info-section .owl-carousel .owl-item.active .item p,
        .info-section .owl-carousel .owl-item.active .item ul {
            opacity: 1;
            transform: translateY(0);
        }

        .info-section .owl-carousel .owl-item.active .item h2 {
            transition-delay: 0.2s;
        }

        .info-section .owl-carousel .owl-item.active .item p,
        .info-section .owl-carousel .owl-item.active .item ul {
            transition-delay: 0.4s;
        }

        @keyframes slideInCard {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes slideInTitle {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes dotClick {
            0% { transform: scale(1.2); }
            50% { transform: scale(0.9); }
            100% { transform: scale(1.05); }
        }

        .info-section .owl-dot.clicked {
            animation: dotClick 0.3s ease-out;
        }

        .info-section .owl-carousel .item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            border-radius: 24px;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .info-section .owl-carousel .item:hover::before {
            opacity: 1;
        }

        .info-section .owl-carousel .item:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 24px 48px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.18);
        }

        .info-section h2 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .info-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
            border-radius: 2px;
        }

        .info-section p,
        .info-section li {
            font-size: 1rem;
            line-height: 1.6;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            color: #ffffff;
            opacity: 0.95;
        }

        .info-section ul {
            padding-left: 25px;
        }

        .info-section li {
            margin-bottom: 8px;
            position: relative;
        }

        .info-section li::before {
            content: '✓';
            position: absolute;
            left: -25px;
            color: #b8d4f1;
            font-weight: bold;
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .info-section .testimonial {
            font-style: italic;
            margin-top: 15px;
            border-left: 4px solid rgba(255, 255, 255, 0.5);
            padding-left: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .info-section .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.3);
            font-family: serif;
        }

        .info-section .owl-dots {
            text-align: center;
            margin-top: 25px;
            position: relative;
            z-index: 10;
        }

        .info-section .owl-dot {
            display: inline-block;
            width: 40px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            margin: 0 6px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .info-section .owl-dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.6s ease;
        }

        .info-section .owl-dot:hover::before {
            left: 100%;
        }

        .info-section .owl-dot:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .info-section .owl-dot.active {
            background: linear-gradient(90deg, #b8d4f1 0%, #ffffff 50%, #b8d4f1 100%);
            transform: scale(1.2);
            border-color: #ffffff;
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
        }

        .info-section .owl-dot.active::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 6px;
            height: 6px;
            background: rgba(0, 54, 118, 0.8);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 1;
            }
        }

        .info-section .owl-dot:active,
        .info-section .owl-dot:focus {
            outline: none;
            transform: scale(1.05);
            animation: dotClick 0.3s ease-out;
        }

        @keyframes dotClick {
            0% { transform: scale(1.2); }
            50% { transform: scale(0.9); }
            100% { transform: scale(1.05); }
        }

        .login-section {
            padding: 40px;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            height: 100%;
        }

        .login-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 80% 20%, rgba(0, 54, 118, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 54, 118, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        .login-section .logo {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .login-section .logo img {
            filter: drop-shadow(0 4px 8px rgba(0, 54, 118, 0.15));
            transition: transform 0.3s ease;
        }

        .login-section .logo img:hover {
            transform: scale(1.05);
        }

        .login-section .logo small {
            cursor: pointer;
            color: #6c757d;
            transition: all 0.3s ease;
            font-size: 0.85rem;
        }

        .login-section .logo small:hover {
            color: #003676;
            transform: translateY(-2px);
        }

        .login-section h4 {
            color: #003676;
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 1.6rem;
            position: relative;
            z-index: 1;
        }

        .login-section p {
            color: #6c757d;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-floating {
            position: relative;
            z-index: 1;
        }

        .form-control {
            border-radius: 16px;
            border: 2px solid #e9ecef;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 1rem;
            font-size: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .form-control:focus {
            box-shadow: 
                0 0 0 0.25rem rgba(0, 54, 118, 0.15),
                0 4px 16px rgba(0, 54, 118, 0.1);
            border-color: #003676;
            transform: translateY(-2px);
        }

        .form-control:hover {
            border-color: #003676;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .form-control.is-invalid {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
        }

        .form-control.is-invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .invalid-feedback {
            display: none;
            width: 100%;
            margin-top: 0.25rem;
            font-size: 0.875rem;
            color: #dc3545;
            background: rgba(220, 53, 69, 0.1);
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
            border-left: 3px solid #dc3545;
        }

        .invalid-feedback.show,
        .form-control.is-invalid ~ .invalid-feedback {
            display: block;
        }

        .invalid-feedback strong {
            font-weight: 600;
        }

        .btn-primary {
            background: linear-gradient(135deg, #003676 0%, #1a4480 25%, #2d5a9b 50%, #4070b6 75%, #5385d1 100%);
            border: none;
            border-radius: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 24px rgba(0, 54, 118, 0.25);
            font-size: 1.1rem;
            padding: 0.8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 54, 118, 0.35);
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .version-info {
            position: absolute;
            bottom: 15px;
            right: 20px;
            color: rgba(0, 54, 118, 0.3);
            font-size: 0.8rem;
            user-select: none;
            font-weight: 500;
            z-index: 1;
        }

        .form-check-input:checked {
            background-color: #003676;
            border-color: #003676;
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 54, 118, 0.15);
        }

        a {
            color: #003676;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #1a4480;
            text-decoration: underline;
        }

        .login-card {
            display: flex;
            width: 100%;
            max-width: 1400px;
            height: 95vh;
            max-height: 95vh;
            background: #fff;
            border-radius: 24px;
            box-shadow: 
                0 32px 64px rgba(0, 54, 118, 0.15),
                0 16px 32px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            backdrop-filter: blur(20px);
            margin: 0 auto;
            border: 1px solid rgba(0, 54, 118, 0.1);
            position: relative;
        }

        @media (max-width: 992px) {
            .login-card {
                flex-direction: column;
                max-width: 500px;
                height: auto;
                max-height: none;
            }

            .info-section {
                display: none;
            }

            .login-section {
                width: 100%;
                padding: 40px;
                min-height: 100vh;
                justify-content: center;
            }

            .login-content {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .login-container {
                padding: 0.5rem;
            }

            .info-section {
                display: none;
            }

            .login-section {
                width: 100%;
                padding: 30px;
                min-height: 100vh;
                justify-content: center;
            }

            .login-content {
                justify-content: center;
            }

            .login-section h4 {
                font-size: 1.4rem;
            }

            .login-section .logo {
                margin-bottom: 1.5rem;
            }
        }