/* ============================================================
   Finance Solution+ — login brand styles
   Plain CSS (no Razor). Deploy to: ~/Content/css/fsl-login.css
   All selectors are fsl- prefixed and cannot collide with style.css / Bootstrap.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root{--navy:#1e2a36;--navy-2:#243341;--accent:#1d9e75;--accent-d:#178a65;--ink:#2f3c4c;--muted:#8b929d;--border:#dde0e6;--bg:#f4f5f7;}
body{margin:0;font-family:'Plus Jakarta Sans',system-ui,Segoe UI,Arial,sans-serif;color:var(--ink);background:var(--bg);-webkit-font-smoothing:antialiased;}
.fsl-wrap{display:flex;min-height:100vh;box-sizing:border-box;}
.fsl-wrap *,.fsl-wrap *::before,.fsl-wrap *::after{box-sizing:border-box;}
.fsl-mark{display:block;}
.fsl-mark .eye-out{fill:none;stroke:currentColor;stroke-width:3;}
.fsl-mark .iris{fill:none;stroke:currentColor;stroke-width:3;}
.fsl-mark .pupil{fill:currentColor;}

/* ---- Brand panel ---- */
.fsl-brand{position:relative;flex:0 0 42%;max-width:560px;background:var(--navy);color:#fff;padding:48px 52px;display:flex;flex-direction:column;overflow:hidden;}
.fsl-brand-top{display:flex;align-items:center;gap:16px;position:relative;z-index:2;}
.fsl-brand-top .fsl-mark{width:52px;height:52px;color:var(--accent);flex:0 0 52px;}
.fsl-brand-name{font-size:20px;font-weight:700;line-height:1.25;letter-spacing:.2px;}
.fsl-brand-name span{display:block;font-weight:500;color:#aeb8c4;font-size:13px;letter-spacing:.6px;text-transform:uppercase;margin-top:4px;}
.fsl-brand-mid{position:relative;z-index:2;margin-top:auto;margin-bottom:auto;padding:40px 0;}
.fsl-brand-head{font-size:30px;font-weight:700;line-height:1.25;margin:0 0 14px;max-width:18ch;}
.fsl-brand-sub{font-size:15px;line-height:1.7;color:#b8c1cc;margin:0;max-width:34ch;}
.fsl-brand-foot{position:relative;z-index:2;font-size:12px;color:#8893a0;}
.fsl-watermark{position:absolute;right:-70px;bottom:-60px;width:380px;height:380px;color:#fff;opacity:.04;z-index:1;}

/* ---- Form side ---- */
.fsl-form-side{flex:1 1 auto;display:flex;align-items:center;justify-content:center;padding:40px 24px;}
.fsl-card{width:100%;max-width:392px;}
.fsl-mobile-logo{display:none;align-items:center;gap:12px;margin-bottom:28px;}
.fsl-mobile-logo .fsl-mark{width:40px;height:40px;color:var(--accent);}
.fsl-mobile-logo b{font-size:16px;font-weight:700;}
.fsl-title{font-size:25px;font-weight:700;margin:0 0 6px;color:var(--ink);}
.fsl-sub{font-size:14px;color:var(--muted);margin:0 0 28px;}
.fsl-field{margin-bottom:16px;}
.fsl-label{display:block;font-size:12.5px;font-weight:600;color:var(--ink);margin-bottom:7px;}
.fsl-input-wrap{position:relative;}
.fsl-input-ico{position:absolute;left:14px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted);pointer-events:none;z-index:2;}
.fsl-input{width:100%;height:48px;border:1px solid var(--border);border-radius:10px;background:#fff;font:inherit;font-size:15px;color:var(--ink);padding:0 14px 0 44px;transition:border-color .15s,box-shadow .15s;}
.fsl-input::placeholder{color:#aab1bb;}
.fsl-input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(29,158,117,.15);}
.fsl-row{display:flex;align-items:center;justify-content:flex-end;margin:4px 0 22px;}
.fsl-link{font-size:13px;color:var(--accent);text-decoration:none;font-weight:600;}
.fsl-link:hover{text-decoration:underline;}
.fsl-btn{width:100%;height:50px;border:0;border-radius:10px;background:var(--accent);color:#fff;font:inherit;font-size:16px;font-weight:600;cursor:pointer;transition:background .15s,transform .05s;}
.fsl-btn:hover{background:var(--accent-d);}
.fsl-btn:active{transform:scale(.99);}

/* ---- select2 themed to match the brand inputs (scoped to the card) ---- */
.fsl-card .select2-container{width:100% !important;}
.fsl-card .select2-container--bootstrap4 .select2-selection--single{height:48px;border:1px solid var(--border);border-radius:10px;padding:0 14px 0 44px;display:flex;align-items:center;background:#fff;}
.fsl-card .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered{padding:0;line-height:1.4;color:var(--ink);}
.fsl-card .select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder{color:#aab1bb;}
.fsl-card .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow{top:0;height:48px;right:12px;}
.fsl-card .select2-container--bootstrap4.select2-container--focus .select2-selection,
.fsl-card .select2-container--bootstrap4.select2-container--open .select2-selection{border-color:var(--accent);box-shadow:0 0 0 3px rgba(29,158,117,.15);}

/* ---- Responsive ---- */
@media (max-width:880px){
    .fsl-wrap{flex-direction:column;}
    .fsl-brand{display:none;}
    .fsl-mobile-logo{display:flex;}
    .fsl-form-side{padding:36px 22px;align-items:flex-start;}
    .fsl-card{margin-top:6vh;}
}
