:root{
    --color-default         : #777;
    --color-default-fuerte  : #333;
    --color-principal-fuerte: #012f49;
    --color-principal       : #7CCEF3;
    --box-shadow-1          : 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
body.login-page{
    min-height: 100vh;
    height: auto;
    background-image: url("/img/fondos/login.jpg") !important;
    background-repeat: no-repeat;
    background-size: cover;
}
body.login-page a.contacto{
    border-bottom: 0;
}
body .logos{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    flex-wrap: wrap;
}
body .logos img{
    height: 50px;
    margin: 0 15px;
}

.login-box{
    width: 400px;
    max-width: 100%;
}
.login-box .card{
    box-shadow: none;
}
.login-box .card input{
    font-size: 18px;
    color: #555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 52px;
    background: 0 0;
    padding: 0 5px;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #dedede;
    margin: 30px 0;
}
input::placeholder {
    opacity: .6 !important;
    font-weight: bold;
}
.login-box .card input:focus{
    box-shadow: none;
}
.login-box .funcionalidadFormulario{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-box .botonLogin{
    margin: 20px 0;
    font-size: 20px;
    border-radius: 20px;
    background: var(--color-principal);
    border-color: var(--color-principal);
    box-shadow: var(--box-shadow-1);
    opacity: .8;
    color: #333;
    transition: .2s all;
}
.login-box .botonLogin:hover{
    box-shadow: none;
    opacity: 1;
}
.login-box .funcionalidadFormulario label,
.login-box .funcionalidadFormulario a{
    color: var(--color-default);
    font-weight: normal;
}
[class*="icheck-"] > input:first-child + input[type="hidden"] + label::before, [class*="icheck-"] > input:first-child + label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid #dedede;
    margin-left: -29px;
    border-radius: .25rem;
    transition: .2s all;
}
.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before, .icheck-primary > input:first-child:checked + label::before {
    background-color: var(--color-principal);
    border-color: var(--color-principal);
}
[class*="icheck-"] > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before, [class*="icheck-"] > input:first-child:not(:checked):not(:disabled):hover + label::before {
    border-width: 1px;
    border-color: var(--color-principal);
}
[class*="icheck-"] > input:first-child:checked + input[type="hidden"] + label::after, [class*="icheck-"] > input:first-child:checked + label::after {
    content: none;
}
@media only screen and (max-height: 750px){
    body .logos{
        position: static;
    }
    body .logos img{
        flex: 0 0 75%;
        max-width: 225px;
        height: auto;
        margin: 15px 40px;
    }
}

@media only screen and (max-width: 922px){
    body .logos{
        position: static;
    }
    body .logos img{
        flex: 0 0 75%;
        max-width: 300px;
        height: auto;
        margin: 15px 0;
    }
    #stars1, #stars2, #stars3{
        animation: none;
    }
    body .login-logo{
        margin: 100px 0 70px 0!important;
        padding: 0 !important;
    }
    body .login-box .card{
        margin: 70px 0 !important;
        padding: 0 !important;
        border-radius: 0;
    }

}
