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

        body {
            font-family: 'Jost', sans-serif;
            min-height: 100vh;
            display: flex;
        }

        /* ── Left panel ── */
        .left-panel {
            width: 55%;
            background-color: #0A1628;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative circles */
        .left-panel::before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            border: 1.5px solid rgba(245,196,0,0.08);
            top: -80px;
            left: -80px;
        }
        .left-panel::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1.5px solid rgba(245,196,0,0.06);
            bottom: -60px;
            right: -60px;
        }

        .left-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 420px;
        }

        .left-inner img {
            height: 110px;
            margin-bottom: 32px;
            filter: drop-shadow(0 4px 24px rgba(245,196,0,0.18));
        }

        .left-inner h1 {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .left-inner h1 span {
            color: #F5C400;
        }

        .left-inner p {
            font-size: 15px;
            color: #8A9BB0;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .badge-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.05);
            border: 1.5px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            padding: 10px 16px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 500;
        }

        .badge svg {
            width: 16px;
            height: 16px;
            fill: #F5C400;
        }

        /* ── Right panel ── */
        .right-panel {
            width: 45%;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 56px;
        }

        .form-container {
            width: 100%;
            max-width: 400px;
        }

        .form-header {
            margin-bottom: 36px;
        }

        .form-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: #0A1628;
            margin-bottom: 6px;
        }

        .form-header p {
            font-size: 14px;
            color: #8A9BB0;
        }

        /* Alerts */
        .alert-success-custom {
            background: rgba(34,197,94,0.08);
            border: 1.5px solid #22c55e;
            border-radius: 8px;
            padding: 12px 16px;
            color: #15803d;
            font-size: 13px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alert-danger-custom {
            background: rgba(239,68,68,0.08);
            border: 1.5px solid #ef4444;
            border-radius: 8px;
            padding: 12px 16px;
            color: #dc2626;
            font-size: 13px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Field label */
        .field-label {
            font-size: 13px;
            font-weight: 600;
            color: #0A1628;
            margin-bottom: 8px;
            display: block;
        }

        /* Input */
        .field-input {
            width: 100%;
            height: 48px;
            border: 1.5px solid #D1D9E2;
            border-radius: 10px;
            padding: 0 44px 0 14px;
            font-family: 'Jost', sans-serif;
            font-size: 15px;
            color: #0A1628;
            background: #ffffff;
            outline: none;
            transition: border-color 0.15s;
        }

        .field-input:focus {
            border-color: #0A1628;
        }

        .field-input.has-error {
            border-color: #ef4444;
        }

        .field-input::placeholder {
            color: #B0BEC5;
        }

        .field-wrap {
            position: relative;
            margin-bottom: 20px;
        }

        .field-icon {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #8A9BB0;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        /* Submit */
        .btn-submit {
            width: 100%;
            height: 52px;
            background: #F5C400;
            border: 1.5px solid #F5C400;
            border-radius: 10px;
            font-family: 'Jost', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #0A1628;
            cursor: pointer;
            margin-top: 8px;
            transition: background 0.15s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-submit:hover {
            background: #e6b800;
            transform: translateY(-1px);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* Footer */
        .form-footer {
            margin-top: 32px;
            text-align: center;
            font-size: 12px;
            color: #B0BEC5;
        }

        /* Responsive */
        @media (max-width: 900px) {
            body { flex-direction: column; }
            .left-panel {
                width: 100%;
                padding: 40px 24px;
                min-height: 260px;
            }
            .left-inner img { height: 72px; margin-bottom: 16px; }
            .left-inner h1 { font-size: 22px; }
            .left-inner p { display: none; }
            .badge-row { display: none; }
            .right-panel {
                width: 100%;
                padding: 36px 24px 48px;
            }
        }

        /* ── Base ──────────────────────────────────────────────────────────── */
        *, *::before, *::after { box-sizing: border-box; }

        body, .aside, .header, .menu-title, .menu-section,
        h1, h2, h3, h4, h5, h6, p, span, a, td, th, label, input, select, textarea, button {
            font-family: 'Jost', sans-serif !important;
        }

        /* ── Aside / Sidebar ───────────────────────────────────────────────── */
        .aside,
        #kt_aside {
            background-color: #0A1628 !important;
            border-right: 1.5px solid #13213d !important;
        }

        /* Logo area */
        .aside-logo,
        #kt_aside_logo {
            background-color: #0A1628 !important;
            border-bottom: 1.5px solid #13213d !important;
            padding: 0 24px !important;
            height: 65px !important;
            display: flex !important;
            align-items: center !important;
        }

        .aside-logo .logo img { height: 38px !important; }

        /* Aside toggle button */
        #kt_aside_toggle .svg-icon svg path { fill: #8A9BB0 !important; }
        #kt_aside_toggle:hover .svg-icon svg path { fill: #F5C400 !important; }

        /* Menu section label */
        .menu-section {
            color: #4a6080 !important;
            font-size: 10px !important;
            font-weight: 700 !important;
            letter-spacing: 1.2px !important;
        }

        /* Menu items */
        .aside .menu-link {
            border-radius: 8px !important;
            margin: 1px 10px !important;
            padding: 10px 12px !important;
            transition: background .15s !important;
        }

        .aside .menu-title {
            color: #8A9BB0 !important;
            font-size: 13.5px !important;
            font-weight: 500 !important;
        }

        .aside .menu-icon .svg-icon svg path,
        .aside .menu-icon .svg-icon svg rect,
        .aside .menu-icon .svg-icon svg circle {
            fill: #4a6080 !important;
        }

        /* Hover */
        .aside .menu-link:hover,
        .aside .menu-item.hover > .menu-link {
            background-color: rgba(245,196,0,0.08) !important;
        }
        .aside .menu-link:hover .menu-title,
        .aside .menu-item.hover > .menu-link .menu-title {
            color: #F5C400 !important;
        }
        .aside .menu-link:hover .svg-icon svg path,
        .aside .menu-link:hover .svg-icon svg rect,
        .aside .menu-link:hover .svg-icon svg circle,
        .aside .menu-item.hover > .menu-link .svg-icon svg path,
        .aside .menu-item.hover > .menu-link .svg-icon svg rect {
            fill: #F5C400 !important;
        }

        /* Active */
        .aside .menu-link.active,
        .aside .menu-item.show > .menu-link {
            background-color: #F5C400 !important;
        }
        .aside .menu-link.active .menu-title,
        .aside .menu-item.show > .menu-link .menu-title {
            color: #0A1628 !important;
            font-weight: 700 !important;
        }
        .aside .menu-link.active .svg-icon svg path,
        .aside .menu-link.active .svg-icon svg rect,
        .aside .menu-link.active .svg-icon svg circle,
        .aside .menu-item.show > .menu-link .svg-icon svg path,
        .aside .menu-item.show > .menu-link .svg-icon svg rect {
            fill: #0A1628 !important;
        }

        /* Sub-menu accordion */
        .aside .menu-sub-accordion {
            background: transparent !important;
        }
        .aside .menu-sub .menu-link {
            padding-left: 40px !important;
        }
        .aside .menu-sub .menu-title {
            font-size: 13px !important;
        }
        .aside .menu-arrow::after {
            border-color: #4a6080 !important;
        }
        .aside .menu-item.show > .menu-link .menu-arrow::after {
            border-color: #0A1628 !important;
        }

        /* Bullet dots */
        .bullet-dot {
            background-color: #4a6080 !important;
        }
        .aside .menu-link:hover .bullet-dot,
        .aside .menu-link.active .bullet-dot {
            background-color: #F5C400 !important;
        }

        /* Aside footer */
        #kt_aside_footer {
            background-color: #0A1628 !important;
            border-top: 1.5px solid #13213d !important;
        }

        /* Scrollbar in aside */
        #kt_aside_menu_wrapper::-webkit-scrollbar { width: 4px; }
        #kt_aside_menu_wrapper::-webkit-scrollbar-track { background: transparent; }
        #kt_aside_menu_wrapper::-webkit-scrollbar-thumb { background: #13213d; border-radius: 4px; }

        /* ── Header ────────────────────────────────────────────────────────── */
        .header,
        #kt_header {
            background-color: #ffffff !important;
            border-bottom: 1.5px solid #e8edf2 !important;
            box-shadow: none !important;
            height: 65px !important;
        }

        /* Page title in header */
        #kt_header h1,
        .page-title h1 {
            font-size: 17px !important;
            font-weight: 700 !important;
            color: #0A1628 !important;
        }

        /* User name in header */
        #kt_header_user_menu_toggle h6 {
            font-size: 14px !important;
            font-weight: 600 !important;
            color: #0A1628 !important;
            margin: 0 6px 0 0 !important;
            cursor: pointer !important;
        }

        /* User dropdown */
        .menu-sub-dropdown {
            border: 1.5px solid #e8edf2 !important;
            border-radius: 12px !important;
            box-shadow: 0 8px 32px rgba(10,22,40,0.10) !important;
        }

        .menu-sub-dropdown .menu-link:hover {
            background-color: rgba(245,196,0,0.08) !important;
            color: #0A1628 !important;
        }

        /* ── Toolbar ───────────────────────────────────────────────────────── */
        .toolbar,
        #kt_toolbar {
            background-color: #f4f7fa !important;
            border-bottom: 1.5px solid #e8edf2 !important;
            min-height: 55px !important;
        }

        .toolbar .page-title h1 {
            font-size: 16px !important;
            font-weight: 700 !important;
            color: #0A1628 !important;
        }

        /* ── Content area ──────────────────────────────────────────────────── */
        .content,
        #kt_content {
            background-color: #f4f7fa !important;
        }

        /* ── Alerts ────────────────────────────────────────────────────────── */
        .alert-success {
            background: rgba(34,197,94,0.08) !important;
            border: 1.5px solid #22c55e !important;
            color: #15803d !important;
            border-radius: 10px !important;
        }

        .alert-danger {
            background: rgba(239,68,68,0.08) !important;
            border: 1.5px solid #ef4444 !important;
            color: #dc2626 !important;
            border-radius: 10px !important;
        }

        /* ── Cards ─────────────────────────────────────────────────────────── */
        .card {
            border: 1.5px solid #e8edf2 !important;
            border-radius: 12px !important;
            box-shadow: none !important;
        }

        .card-header {
            border-bottom: 1.5px solid #e8edf2 !important;
            background: #fff !important;
        }

        .card-title {
            font-size: 15px !important;
            font-weight: 700 !important;
            color: #0A1628 !important;
        }

        /* ── Buttons ───────────────────────────────────────────────────────── */
        .btn-primary {
            background-color: #0A1628 !important;
            border-color: #0A1628 !important;
            color: #fff !important;
            font-weight: 600 !important;
            border-radius: 8px !important;
        }
        .btn-primary:hover {
            background-color: #13213d !important;
            border-color: #13213d !important;
        }

        .btn-warning, .btn-yellow {
            background-color: #F5C400 !important;
            border-color: #F5C400 !important;
            color: #0A1628 !important;
            font-weight: 700 !important;
            border-radius: 8px !important;
        }
        .btn-warning:hover {
            background-color: #e6b800 !important;
            border-color: #e6b800 !important;
            color: #0A1628 !important;
        }

        .btn-light-primary {
            background-color: rgba(10,22,40,0.06) !important;
            color: #0A1628 !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
        }
        .btn-light-primary:hover {
            background-color: #0A1628 !important;
            color: #fff !important;
        }

        .btn-danger {
            border-radius: 8px !important;
            font-weight: 600 !important;
        }

        /* ── Tables ────────────────────────────────────────────────────────── */
        .table thead th {
            background-color: #f4f7fa !important;
            color: #4a6080 !important;
            font-size: 11px !important;
            font-weight: 700 !important;
            letter-spacing: 0.8px !important;
            text-transform: uppercase !important;
            border-bottom: 1.5px solid #e8edf2 !important;
        }

        .table tbody tr {
            border-bottom: 1px solid #f0f4f8 !important;
        }

        .table tbody tr:hover {
            background-color: rgba(245,196,0,0.04) !important;
        }

        .table td {
            color: #0A1628 !important;
            font-size: 13.5px !important;
            vertical-align: middle !important;
        }

        /* ── Badges ────────────────────────────────────────────────────────── */
        .badge-light-primary {
            background-color: rgba(10,22,40,0.08) !important;
            color: #0A1628 !important;
        }
        .badge-light-success {
            background-color: rgba(34,197,94,0.1) !important;
            color: #15803d !important;
        }
        .badge-light-danger {
            background-color: rgba(239,68,68,0.1) !important;
            color: #dc2626 !important;
        }
        .badge-light-warning {
            background-color: rgba(245,196,0,0.12) !important;
            color: #92700a !important;
        }

        /* ── Forms ─────────────────────────────────────────────────────────── */
        .form-control, .form-select {
            border: 1.5px solid #d1d9e2 !important;
            border-radius: 8px !important;
            font-size: 14px !important;
            color: #0A1628 !important;
        }
        .form-control:focus, .form-select:focus {
            border-color: #0A1628 !important;
            box-shadow: none !important;
        }
        .form-label {
            font-size: 13px !important;
            font-weight: 600 !important;
            color: #0A1628 !important;
        }

        /* ── Pagination ────────────────────────────────────────────────────── */
        .page-item.active .page-link {
            background-color: #0A1628 !important;
            border-color: #0A1628 !important;
        }
        .page-link {
            color: #0A1628 !important;
            border: 1.5px solid #e8edf2 !important;
            border-radius: 6px !important;
            margin: 0 2px !important;
        }
        .page-link:hover {
            background-color: rgba(245,196,0,0.1) !important;
            color: #0A1628 !important;
        }

        /* ── Modals ────────────────────────────────────────────────────────── */
        .modal-content {
            border: 1.5px solid #e8edf2 !important;
            border-radius: 14px !important;
            box-shadow: 0 16px 48px rgba(10,22,40,0.12) !important;
        }
        .modal-header {
            border-bottom: 1.5px solid #e8edf2 !important;
            padding: 20px 24px !important;
        }
        .modal-title {
            font-size: 16px !important;
            font-weight: 700 !important;
            color: #0A1628 !important;
        }
        .modal-footer {
            border-top: 1.5px solid #e8edf2 !important;
        }

        /* ── Mobile aside toggle ───────────────────────────────────────────── */
        #kt_aside_mobile_toggle .svg-icon svg path { fill: #0A1628 !important; }

        /* ── Scrollbar global ──────────────────────────────────────────────── */
        ::-webkit-scrollbar { width: 5px; height: 5px; }
        ::-webkit-scrollbar-track { background: #f4f7fa; }
        ::-webkit-scrollbar-thumb { background: #d1d9e2; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #0A1628; }