body{
    background-color:#f5f5f5;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#auth{
    height:100vh;
    width: 100vw;
    overflow:hidden;
    position: relative;
    background-color: #1e2938;
    background-image: url(/assets/images/back.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#auth::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}
#auth .row{
    height: 100vh;
    margin: 0;
    position: relative;
    z-index: 2;
}
#auth #auth-left{
    padding: 3rem 3.5rem;
    height: auto;
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-left: 8%;
    max-width: 420px;
    position: relative;
}
#auth #auth-left .auth-logo{
    margin-bottom: 2.5rem;
    text-align: center;
    height: 70px;
    background: url(/assets/images/logotipo.png) center center no-repeat;
    background-size: contain;
}
#auth #auth-left .auth-logo img{
    height: 70px;
    width: auto;
    max-width: 280px;
}
#auth #auth-left .form-label{
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
#auth #auth-left .form-group{
    position: relative;
}
#auth #auth-left .form-control{
    padding: 0.85rem 1.2rem;
    padding-right: 3rem;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    background: #fff;
}
#auth #auth-left .form-control:focus{
    border-color: #2d499d;
    box-shadow: 0 0 0 0.2rem rgba(45, 73, 157, 0.15);
    outline: none;
}
#auth #auth-left .form-control::placeholder{
    color: #999;
}
#auth #auth-left .input-icon{
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    pointer-events: none;
}
#auth #auth-left .form-check{
    margin-bottom: 1.8rem;
    margin-top: 0.5rem;
}
#auth #auth-left .form-check-label{
    color: #555;
    font-size: 0.9rem;
}
#auth #auth-left .btn-sign-in{
    background: #1e3a78;
    border: none;
    padding: 0.9rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 120, 0.3);
}
#auth #auth-left .btn-sign-in:hover{
    background: #162d5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 120, 0.4);
}
#auth #auth-left .text-muted{
    color: #666 !important;
    text-decoration: none;
    font-size: 0.9rem;
}
#auth #auth-left .text-muted:hover{
    color: #2d499d !important;
    text-decoration: underline;
}
@media screen and (max-width:767px){
    #auth #auth-left{
        padding: 2.5rem 2rem;
        max-width: 90%;
        margin-left: 5%;
    }
}
@media screen and (max-width:576px){
    #auth #auth-left{
        padding: 2rem 1.5rem;
        max-width: 95%;
        margin-left: 2.5%;
    }
    #auth #auth-left .auth-logo{
        height: 55px;
    }
}
 