 body {
        background-color: #080f1e;
    }

    .login-page-wrapper {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: radial-gradient(circle at top right, #132448 0%, #080f1e 60%, #050a14 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2.5rem 1rem;
    }

    .brand-heading {
        font-family: 'Outfit', sans-serif;
    }

    .login-main-card {
        max-width: 1040px;
        width: 100%;
        background: #ffffff;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px rgba(59, 130, 246, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Left Column (Branding & Features) */
    .left-branding-panel {
        background: linear-gradient(155deg, #1b2a4a 0%, #131f38 50%, #0d1527 100%);
        padding: 3rem 2.75rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .pill-badge {
        display: inline-block;
        background: rgba(56, 189, 248, 0.12);
        color: #38bdf8;
        border: 1px solid rgba(56, 189, 248, 0.25);
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .accent-bar {
        width: 48px;
        height: 4px;
        background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
        border-radius: 4px;
    }

    .feature-icon-box {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #38bdf8;
        flex-shrink: 0;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 16px;
        padding: 14px 12px;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.09);
        transform: translateY(-2px);
    }

    /* Right Column (Form) */
    .right-form-panel {
        background: #ffffff;
        padding: 3.5rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .form-input-group {
        position: relative;
    }

    .form-input-group .input-group-text {
        background: #f8fafc;
        border: 1.5px solid #e2e8f0;
        border-end-0: none;
        color: #94a3b8;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        padding-left: 16px;
        padding-right: 14px;
        font-size: 1.1rem;
    }

    .form-input-group .form-control {
        background: #f8fafc;
        border: 1.5px solid #e2e8f0;
        border-start-0: none;
        color: #0f172a;
        font-weight: 500;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
        padding: 12px 16px;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }

    .form-input-group .form-control:focus {
        background: #ffffff;
        border-color: #3b82f6;
        box-shadow: none;
    }

    .form-input-group:focus-within .input-group-text {
        border-color: #3b82f6;
        color: #3b82f6;
        background: #ffffff;
    }

    .form-input-group .form-control::placeholder {
        color: #94a3b8;
        font-weight: 400;
    }

    .btn-secure-login {
        background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
        color: #ffffff;
        font-weight: 700;
        font-size: 1rem;
        padding: 13px 20px;
        border-radius: 12px;
        border: none;
        box-shadow: 0 10px 22px -5px rgba(37, 99, 235, 0.45);
        transition: all 0.25s ease;
    }

    .btn-secure-login:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
        color: #ffffff;
        box-shadow: 0 14px 28px -5px rgba(37, 99, 235, 0.55);
        transform: translateY(-2px);
    }

    @media (max-width: 991.98px) {
        .left-branding-panel {
            padding: 2.5rem 2rem;
        }
        .right-form-panel {
            padding: 2.5rem 2rem;
        }
    }