
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #9b59b6;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --gradient-primary: linear-gradient(135deg, #2c3e50, #3498db);
            --gradient-secondary: linear-gradient(135deg, #9b59b6, #3498db);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.15);
            --transition-fast: 0.3s ease;
            --transition-slow: 0.6s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Header Styling */
        .site-breadcrumb {
            background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.85)), url(/assets/img/logo/bg-login.avif) center center / cover no-repeat !important;
            padding: 9px 0 !important;
            position: relative;
            overflow: hidden;
        }
        
        .site-breadcrumb::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shine 3s infinite;
        }
        
        .breadcrumb-title {
            color: white;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease forwards;
            font-size: 2.2rem;
            text-align: center;
        }
        
        /* Login Card */
        .login-card {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
            overflow: hidden;
            position: relative;
            border: none;
            animation: float 6s ease-in-out infinite;
            margin-bottom: 30px;
        }
        
        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .login-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy), 0 20px 40px rgba(155, 89, 182, 0.2);
        }
        
        .login-header {
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            border-radius: 20px 20px 0 0;
            text-align: center;
        }
        
        .login-header h3 {
            margin: 0;
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .login-body {
            padding: 30px;
        }
        
        /* Form Styling */
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .form-label i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .form-control-custom {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 1rem;
            transition: all var(--transition-fast);
            background-color: #fafafa;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .form-control-custom:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.05);
            background-color: white;
            transform: translateY(-2px);
        }
        
        .form-control-custom:hover {
            border-color: #bdc3c7;
        }
        
        /* Button Styling */
        .login-btn {
            background: var(--gradient-secondary);
            border: none;
            color: white;
            padding: 16px 30px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            width: 100%;
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
        }
        
        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
        }
        
        .login-btn:active {
            transform: translateY(0);
        }
        
        /* Image Container */
        .image-container {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            overflow: hidden;
            height: 97%;
            animation: slideInUp 0.8s ease forwards;
            animation-delay: 0.5s;
            opacity: 0;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .image-container:hover img {
            transform: scale(1.05);
        }
        
        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-left: 5px solid var(--secondary-color);
            border-radius: 12px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: var(--shadow-light);
            animation: slideInRight 0.8s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }
        
        .info-box h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-box h5 i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        /* Terms & Conditions */
        .terms-box {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            border: 1px solid #eee;
            max-height: 300px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) #eee;
        }
        
        .terms-box::-webkit-scrollbar {
            width: 8px;
        }
        
        .terms-box::-webkit-scrollbar-track {
            background: #eee;
            border-radius: 10px;
        }
        
        .terms-box::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 10px;
        }
        
        .terms-list {
            padding-left: 20px;
        }
        
        .terms-list li {
            margin-bottom: 12px;
            line-height: 1.5;
            color: #555;
            position: relative;
            padding-left: 10px;
        }
        
        .terms-list li::before {
            content: "•";
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: -15px;
        }
        
        /* Home Icon */
        .home-icon {
            position: fixed;
            top: 122px;
            left: 20px;
            z-index: 1000;
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-medium);
            transition: all var(--transition-fast);
            animation: bounce 2s infinite;
        }
        
        .home-icon:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-heavy);
            background: var(--secondary-color);
        }
        
        .home-icon a {
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: color var(--transition-fast);
        }
        
        .home-icon:hover a {
            color: white;
        }
        
        /* Alert Styling */
        .alert-danger {
            background: linear-gradient(135deg, #ffebee, #ffcdd2);
            border: none;
            border-left: 5px solid #f44336;
            border-radius: 12px;
            color: #b71c1c;
            padding: 15px 20px;
            margin-bottom: 25px;
            animation: shake 0.5s ease;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes shine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        @keyframes shake {
            0%, 100% {
                transform: translateX(0);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: translateX(-5px);
            }
            20%, 40%, 60%, 80% {
                transform: translateX(5px);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .login-card, .image-container {
                margin-bottom: 30px;
            }
            
            .home-icon {
                top: 90px;
                left: 15px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 768px) {
            .site-breadcrumb {
                padding: 30px 0 !important;
            }
            
            .breadcrumb-title {
                font-size: 1.5rem;
            }
            
            .login-header h3 {
                font-size: 1.5rem;
            }
            
            .login-body {
                padding: 20px;
            }
            
            .home-icon {
                position: absolute;
                top: 15px;
                left: 15px;
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .breadcrumb-title {
                font-size: 1.3rem;
            }
            
            .form-control-custom {
                padding: 14px 16px;
            }
            
            .login-btn {
                padding: 14px 20px;
                font-size: 1rem;
            }
            
            .terms-box {
                max-height: 250px;
            }
        }
