:root{
    --satsil-blue:#073b7a;
    --satsil-blue-2:#0b5ed7;
    --satsil-red:#9b1c20;
    --satsil-text:#24324a;
    --satsil-muted:#6b7280;
    --satsil-border:#d7dde8;
}
*{box-sizing:border-box}
html,body{height:100%}
body.login-satsil-body{
    margin:0;
    min-height:100vh;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--satsil-text);
    background:#f5f7fb url('../img/plano_fundo.jpeg') center center/cover no-repeat fixed;
    overflow-x:hidden;
}
.login-satsil-overlay{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:34px 18px 92px;
    position:relative;
    background:linear-gradient(90deg,rgba(1,18,50,.18),rgba(255,255,255,.12),rgba(1,18,50,.18));
}
.login-satsil-card{
    width:100%;
    max-width:465px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(255,255,255,.85);
    border-radius:16px;
    box-shadow:0 22px 55px rgba(9,23,56,.28);
    overflow:hidden;
    backdrop-filter:blur(4px);
}
.login-satsil-top{
    padding:30px 34px 12px;
    text-align:center;
}
.login-satsil-logo-main{
    max-width:295px;
    width:86%;
    height:auto;
    display:block;
    margin:0 auto 17px;
}
.login-satsil-divider{
    height:1px;
    background:linear-gradient(90deg,transparent,var(--satsil-border),transparent);
    margin:0 0 12px;
}
.login-satsil-system{
    letter-spacing:8px;
    text-transform:uppercase;
    font-size:17px;
    color:var(--satsil-blue-2);
    margin:0 0 22px;
    font-weight:500;
}
.login-satsil-subtitle{
    margin:0 0 14px;
    color:var(--satsil-muted);
    font-size:14px;
}
.login-satsil-logo-small{
    width:158px;
    max-width:70%;
    height:auto;
    margin:0 auto 18px;
    display:block;
}
.login-satsil-form{
    padding:0 34px 28px;
}
.login-satsil-alert{
    border-radius:10px;
    padding:11px 13px;
    margin:0 0 14px;
    font-size:14px;
    background:#fff1f2;
    color:#9f1239;
    border:1px solid #fecdd3;
    text-align:left;
}
.login-satsil-field{
    position:relative;
    margin-bottom:14px;
}
.login-satsil-field svg{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    fill:#737b88;
    pointer-events:none;
}
.login-satsil-input{
    width:100%;
    height:52px;
    border:1px solid #cfd6e2;
    border-radius:8px;
    background:#fff;
    padding:0 44px 0 47px;
    font-size:16px;
    outline:none;
    color:#111827;
    transition:border .2s, box-shadow .2s;
}
.login-satsil-input:focus{
    border-color:var(--satsil-blue-2);
    box-shadow:0 0 0 4px rgba(11,94,215,.12);
}
.login-satsil-password-toggle{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    border:0;
    background:transparent;
    color:#6b7280;
    cursor:pointer;
    padding:6px;
    line-height:1;
}
.login-satsil-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    font-size:14px;
    color:#374151;
    margin:4px 0 24px;
}
.login-satsil-check{display:flex;align-items:center;gap:8px;white-space:nowrap}
.login-satsil-check input{width:18px;height:18px}
.login-satsil-link{
    color:#0b4ea2;
    text-decoration:none;
    font-weight:600;
}
.login-satsil-link:hover{text-decoration:underline}
.login-satsil-button{
    width:100%;
    height:52px;
    border:0;
    border-radius:7px;
    color:#fff;
    background:linear-gradient(135deg,#0b5ed7,#073b7a);
    font-weight:700;
    font-size:17px;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(11,94,215,.23);
    transition:transform .15s, filter .15s;
}
.login-satsil-button:hover{filter:brightness(1.05);transform:translateY(-1px)}
.login-satsil-contact{
    border-top:1px solid #e5e9f0;
    background:rgba(250,252,255,.9);
    padding:19px 24px;
    text-align:center;
    font-size:15px;
    color:#0b4ea2;
    font-weight:600;
}
.login-satsil-contact a{color:#0b4ea2;text-decoration:none}
.login-satsil-shield-right{
    position:fixed;
    top:34px;
    right:52px;
    width:122px;
    opacity:.92;
    filter:drop-shadow(0 10px 14px rgba(0,0,0,.28));
    pointer-events:none;
}
.login-satsil-shield-left{
    position:fixed;
    left:-35px;
    bottom:95px;
    width:230px;
    opacity:.13;
    pointer-events:none;
}
.login-satsil-footer{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    min-height:64px;
    background:rgba(4,35,82,.96);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:32px;
    padding:12px 22px;
    box-shadow:0 -8px 22px rgba(0,0,0,.18);
    font-size:15px;
}
.login-satsil-footer-brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:18px}
.login-satsil-footer-brand img{width:30px;height:auto}
.login-satsil-footer-sep{height:28px;width:1px;background:rgba(255,255,255,.38)}
.login-satsil-footer a{color:#fff;text-decoration:none;font-weight:700}
@media (max-width:760px){
    .login-satsil-overlay{padding-bottom:130px}
    .login-satsil-shield-right{width:78px;right:16px;top:14px;opacity:.45}
    .login-satsil-shield-left{display:none}
    .login-satsil-top,.login-satsil-form{padding-left:22px;padding-right:22px}
    .login-satsil-system{font-size:14px;letter-spacing:5px}
    .login-satsil-row{align-items:flex-start;flex-direction:column;gap:10px}
    .login-satsil-footer{flex-wrap:wrap;gap:12px;font-size:13px;text-align:center}
    .login-satsil-footer-sep{display:none}
}
