html, body{
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.88) 40%,
        rgba(255,255,255,.25) 100%
    ),
    url('../img/fondo_putaendo.jpg');

    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.login-wrapper{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.login-left{
    width:420px;
    margin-right:80px;
}

.logo-title{
    color:#003ea8;
    font-size:65px;
    font-weight:800;
    line-height:1;
    margin-bottom:10px;
}

.logo-sub{
    color:#003ea8;
    font-size:28px;
    margin-bottom:45px;
}

.welcome{
    color:#1c2c49;
    font-size:28px;
    margin-bottom:10px;
}

.big-title{
    color:#0046c7;
    font-size:58px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:40px;
}

.muni{
    color:#0046c7;
    font-size:24px;
}

.login-card{
    width:460px;
    background:rgba(255,255,255,.92);
    border-radius:28px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    backdrop-filter:blur(5px);
}

.card-title{
    text-align:center;
    color:#002a78;
    font-size:52px;
    font-family:Georgia;
    margin-bottom:10px;
}

.card-sub{
    text-align:center;
    color:#0055c9;
    margin-bottom:40px;
    font-size:20px;
}

.login-card select{
    width:100%;
    height:60px;
    border-radius:10px;
    border:1px solid #d7dce5;
    padding:0 15px;
    font-size:18px;
    margin-bottom:25px;
}

.login-card button{
    width:100%;
    height:62px;
    border:none;
    border-radius:10px;
    background:linear-gradient(90deg,#003fb2,#005ae0);
    color:white;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
}

.login-card button:hover{
    opacity:.95;
}

.footer{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#003ea8;
    color:white;
    text-align:center;
    padding:18px;
    font-size:16px;
}
@media screen and (max-width: 992px){

    html, body{
        height:auto !important;
        min-height:100% !important;
        overflow:auto !important;
    }

    body{
        overflow-y:auto !important;
        background-position:center top !important;
    }

    .login-wrapper{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:flex-start !important;
        height:auto !important;
        min-height:100vh !important;
        padding:25px 15px 90px 15px !important;
        gap:25px !important;
    }

    .login-left{
        width:100% !important;
        margin:0 !important;
        text-align:center !important;
    }

    .logo-title{
        font-size:38px !important;
    }

    .logo-sub{
        font-size:18px !important;
        margin-bottom:18px !important;
    }

    .welcome{
        font-size:20px !important;
    }

    .big-title{
        font-size:34px !important;
        line-height:1.1 !important;
        margin-bottom:18px !important;
    }

    .muni{
        font-size:16px !important;
        margin-bottom:20px !important;
    }

    .login-card{
        width:100% !important;
        max-width:360px !important;
        min-height:auto !important;
        padding:25px 20px !important;
        border-radius:22px !important;
    }

    .card-title{
        font-size:30px !important;
    }

    .card-sub{
        font-size:15px !important;
        margin-bottom:18px !important;
    }

    .login-card select,
    .login-card button{
        height:50px !important;
        font-size:15px !important;
    }

    .footer{
        position:relative !important;
        font-size:11px !important;
        padding:12px !important;
        margin-top:0 !important;
    }
}