 :root {
            --primary: #0b376d;
            --primary-dark: #082b55;
            --primary-light: #eaf3ff;

            --blue: #1769e0;
            --blue-light: #eef5ff;

            --text: #172033;
            --muted: #718096;

            --border: #e2e8f0;
            --white: #ffffff;

            --success: #22a06b;

            --bg: #f5f8fc;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            min-height: 100vh;

            font-family: "Inter", Arial, sans-serif;

            background: var(--bg);

            color: var(--text);

            -webkit-font-smoothing: antialiased;
        }


        .login-wrapper {

            min-height: 100vh;

            display: flex;

            align-items: stretch;
        }


        /* =========================================================
           LEFT BRANDING PANEL
        ========================================================= */

        .branding-panel {

            width: 52%;

            min-height: 100vh;

            position: relative;

            overflow: hidden;

            display: flex;

            align-items: center;

            justify-content: center;

            padding: 60px;

            background:
                linear-gradient(
                    135deg,
                    rgba(11, 55, 109, 0.98),
                    rgba(23, 105, 224, 0.92)
                );
        }


        .branding-panel::before {

            content: "";

            position: absolute;

            width: 550px;

            height: 550px;

            border-radius: 50%;

            background: rgba(255,255,255,0.06);

            top: -220px;

            left: -180px;
        }


        .branding-panel::after {

            content: "";

            position: absolute;

            width: 450px;

            height: 450px;

            border-radius: 50%;

            background: rgba(255,255,255,0.05);

            bottom: -200px;

            right: -150px;
        }


        .branding-content {

            width: 100%;

            max-width: 570px;

            position: relative;

            z-index: 2;

            color: #fff;
        }


    


        .brand-logo {
            display: flex;
            margin-bottom: 40px;
        }
        .brand-logo img {
            width: 25%;
        }


        .branding-content h1 {

            font-size: 44px;

            line-height: 1.15;

            font-weight: 800;

            letter-spacing: -1.5px;

            margin-bottom: 22px;
        }


        .branding-content h1 span {

            color: #bcd9ff;
        }


        .branding-description {

            max-width: 500px;

            color: rgba(255,255,255,0.82);

            font-size: 16px;

            line-height: 1.8;

            margin-bottom: 42px;
        }


        /* Features */

        .feature-list {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 16px;
        }


        .feature {

            display: flex;

            align-items: center;

            gap: 12px;

            padding: 14px 16px;

            border: 1px solid rgba(255,255,255,0.12);

            background: rgba(255,255,255,0.07);

            border-radius: 10px;

            backdrop-filter: blur(5px);
        }


        .feature-icon {

            width: 32px;

            height: 32px;

            flex-shrink: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 8px;

            background: rgba(255,255,255,0.14);

            color: #fff;

            font-size: 15px;
        }


        .feature span {

            font-size: 13px;

            font-weight: 500;

            color: rgba(255,255,255,0.9);
        }


        .branding-footer {

            position: absolute;

            bottom: 28px;

            left: 60px;

            z-index: 2;

            color: rgba(255,255,255,0.6);

            font-size: 12px;
        }


        /* =========================================================
           RIGHT LOGIN PANEL
        ========================================================= */

        .login-panel {

            width: 48%;

            min-height: 100vh;

            background: #fff;

            display: flex;

            align-items: center;

            justify-content: center;

            padding: 50px;
        }


        .login-container {

            width: 100%;

            max-width: 440px;
        }


        .mobile-logo {

            display: none;

            text-align: center;

            margin-bottom: 35px;
        }


        .mobile-logo img {

            width: 145px;

            max-height: 60px;

            object-fit: contain;
        }


        .login-header {

            margin-bottom: 32px;
        }


        .login-header .welcome {

            display: inline-flex;

            align-items: center;

            gap: 7px;

            color: var(--blue);

            background: var(--blue-light);

            padding: 7px 11px;

            border-radius: 20px;

            font-size: 12px;

            font-weight: 600;

            margin-bottom: 16px;
        }


        .login-header h2 {

            font-size: 32px;

            line-height: 1.2;

            font-weight: 800;

            letter-spacing: -0.8px;

            color: var(--text);

            margin-bottom: 10px;
        }


        .login-header p {

            color: var(--muted);

            font-size: 14px;

            line-height: 1.6;
        }


        /* Error */

        .alert-error {

            display: flex;

            gap: 10px;

            align-items: flex-start;

            padding: 13px 14px;

            border-radius: 9px;

            background: #fff1f2;

            border: 1px solid #fecdd3;

            color: #be123c;

            font-size: 13px;

            line-height: 1.5;

            margin-bottom: 20px;
        }


        /* Form */

        .form-group {

            margin-bottom: 20px;
        }


        .form-label {

            display: block;

            font-size: 13px;

            font-weight: 600;

            color: #344054;

            margin-bottom: 8px;
        }


        .input-wrapper {

            position: relative;
        }


        .input-icon {

            position: absolute;

            left: 14px;

            top: 50%;

            transform: translateY(-50%);

            color: #98a2b3;

            font-size: 16px;

            pointer-events: none;
        }


        .form-input {

            width: 100%;

            height: 50px;

            padding: 0 15px 0 43px;

            border: 1px solid var(--border);

            border-radius: 9px;

            background: #fff;

            color: var(--text);

            font-family: inherit;

            font-size: 14px;

            outline: none;

            transition: all 0.2s ease;
        }


        .form-input::placeholder {

            color: #a0aec0;
        }


        .form-input:hover {

            border-color: #cbd5e1;
        }


        .form-input:focus {

            border-color: var(--blue);

            box-shadow: 0 0 0 4px rgba(23,105,224,0.10);
        }


        .password-toggle {

            position: absolute;

            right: 14px;

            top: 50%;

            transform: translateY(-50%);

            border: none;

            background: transparent;

            color: #98a2b3;

            cursor: pointer;

            font-size: 14px;

            padding: 4px;
        }


        .password-toggle:hover {

            color: var(--primary);
        }


        /* Options */

        .form-options {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin: 5px 0 25px;
        }


        .remember {

            display: flex;

            align-items: center;

            gap: 8px;

            cursor: pointer;
        }


        .remember input {

            width: 16px;

            height: 16px;

            accent-color: var(--blue);

            cursor: pointer;
        }


        .remember span {

            color: #667085;

            font-size: 13px;
        }


        .forgot-link {

            color: var(--blue);

            text-decoration: none;

            font-size: 13px;

            font-weight: 600;
        }


        .forgot-link:hover {

            text-decoration: underline;
        }


        /* Button */

        .login-button {

            width: 100%;

            height: 51px;

            border: none;

            border-radius: 9px;

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--blue)
                );

            color: #fff;

            font-family: inherit;

            font-size: 14px;

            font-weight: 700;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 9px;

            box-shadow:
                0 8px 18px rgba(23,105,224,0.20);

            transition: all 0.2s ease;
        }


        .login-button:hover {

            transform: translateY(-1px);

            box-shadow:
                0 10px 22px rgba(23,105,224,0.28);
        }


        .login-button:active {

            transform: translateY(0);
        }


        /* Security */

        .security-note {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 7px;

            margin-top: 22px;

            color: #98a2b3;

            font-size: 11px;
        }


        .security-note svg {

            color: var(--success);
        }


        .login-footer {

            text-align: center;

            margin-top: 38px;

            color: #98a2b3;

            font-size: 11px;

            line-height: 1.6;
        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 1000px) {

            .branding-panel {

                width: 45%;

                padding: 40px;
            }


            .login-panel {

                width: 55%;

                padding: 35px;
            }


            .branding-content h1 {

                font-size: 36px;
            }


            .feature-list {

                grid-template-columns: 1fr;
            }

        }


        @media (max-width: 768px) {

            .login-wrapper {

                display: block;
            }


            .branding-panel {

                display: none;
            }


            .login-panel {

                width: 100%;

                min-height: 100vh;

                padding: 35px 22px;
            }


            .mobile-logo {

                display: block;
            }


            .login-header {

                text-align: center;
            }


            .login-header h2 {

                font-size: 28px;
            }

        }


        @media (max-width: 420px) {

            .login-panel {

                padding: 25px 18px;
            }


            .login-header h2 {

                font-size: 25px;
            }


            .form-options {

                flex-direction: column;

                align-items: flex-start;

                gap: 12px;
            }


            .login-container {

                max-width: 100%;
            }

        }