* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* ================= REMOVE SCROLLBAR ================= */
    html, body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    /* ================= SPLIT CONTAINER ================= */
    .split-container {
        display: flex;
        min-height: 100vh;
        width: 100%;
    }

    /* ================= LEFT SIDE - IMAGE ================= */
    .image-side {
        flex: 1;
        background: linear-gradient(135deg, #f97316, #ea580c);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .image-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.2;
        z-index: 0;
    }

    .image-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: #ffffff;
        padding: 40px;
    }

    .image-content i {
        font-size: 64px;
        margin-bottom: 20px;
        background: rgba(255,255,255,0.2);
        padding: 20px;
        border-radius: 50%;
    }

    .image-content h1 {
        font-size: 28px !important;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .image-content p {
        font-size: 14px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .features {
        margin-top: 30px;
        text-align: left;
        display: inline-block;
    }

    .features li {
        font-size: 13px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .features li i {
        font-size: 16px;
        padding: 0;
        background: none;
        margin: 0;
    }

    /* ================= RIGHT SIDE - LOGIN FORM ================= */
    .login-side {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        padding: 40px;
    }

    .login-box {
        width: 100%;
        max-width: 400px;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .logo i {
        font-size: 48px;
        background: linear-gradient(135deg, #f97316, #ea580c);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 10px;
    }

    .logo h3 {
        font-size: 20px !important;
        font-weight: 800;
        color: #c2410c;
    }

    .login-box h2 {
        font-size: 14px !important;
        font-weight: 700;
        color: #374151;
        margin-bottom: 25px;
        text-align: center;
    }

    /* ================= ERROR MESSAGE ================= */
    .error {
        background: #fef2f2;
        color: #991b1b;
        padding: 12px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
        font-size: 13px;
        border-left: 4px solid #ef4444;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* ================= FORM GROUP ================= */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
    }

    .form-group label i {
        color: #f97316;
        margin-right: 6px;
        font-size: 12px;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid #fed7aa;
        border-radius: 12px;
        font-size: 13px !important;
        font-family: inherit;
        transition: all 0.3s ease;
        background: #ffffff;
        color: #374151;
    }

    .form-control:focus {
        outline: none;
        border-color: #f97316;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    }

    .form-control::placeholder {
        color: #9ca3af;
        font-size: 12px;
    }

    /* ================= LOGIN BUTTON ================= */
    .btn-login {
        width: 100%;
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: #ffffff;
        padding: 12px 24px;
        border: none;
        border-radius: 12px;
        font-size: 13px !important;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .btn-login:hover {
        background: linear-gradient(135deg, #ea580c, #c2410c);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
    }

    .btn-login:active {
        transform: translateY(0);
    }

    /* ================= FORGOT PASSWORD LINK ================= */
    .forgot-link {
        text-align: center;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #ffedd5;
    }

    .forgot-link a {
        color: #f97316;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .forgot-link a:hover {
        color: #c2410c;
        text-decoration: underline;
    }

    /* ================= RESPONSIVE DESIGN ================= */
    @media (max-width: 992px) {
        .image-side {
            display: none;
        }
        
        .login-side {
            flex: 1;
        }
        
        .login-box {
            max-width: 450px;
        }
    }

    @media (max-width: 768px) {
        .login-side {
            padding: 30px 20px;
        }
        
        .login-box {
            max-width: 100%;
        }
        
        .logo i {
            font-size: 40px;
        }
        
        .logo h3 {
            font-size: 18px !important;
        }
        
        .form-control {
            padding: 11px 14px;
            font-size: 12px !important;
        }
        
        .btn-login {
            padding: 11px 20px;
            font-size: 12px !important;
        }
    }

    @media (max-width: 576px) {
        .login-side {
            padding: 25px 15px;
        }
        
        .login-box h2 {
            font-size: 14px !important;
        }
        
        .form-group label {
            font-size: 12px;
        }
        
        .form-control {
            padding: 10px 12px;
            font-size: 12px !important;
        }
        
        .btn-login {
            padding: 10px 18px;
            font-size: 12px !important;
        }
        
        .error {
            padding: 10px 14px;
            font-size: 12px;
        }
    }

    /* ================= SCROLLBAR HIDE ================= */
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
        background: transparent;
        display: none;
    }

    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }