/***
    ESTILOS GEN�RICOS
***/
html,
body,
.login-block{
    height: 100%;
}
.login-intro,
.remember-password,
.login .btn,
.login .form-control,
.login-error{
    font-family: 'Helvetica Neue', helvetica, sans-serif;
}
/***
    LOGIN
***/
.login{
    height: 100%;
    background-color: #eee;
    background-image: url(../img/bg-login.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.login-form{
    max-width: 390px;
    margin: 0;
    border-radius: 0.375em; /*6px*/
    font-size: 0.9rem; /*14px*/
    background-color: #fff;
}
/*logo*/
.login-logo{
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 50px;
    background-color: transparent;
    background-image: url(../img/login-logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.login-logo img{
    max-width: 100%;
    height: auto;
    display: block;
}
/*texto bajo logo*/
.login-intro{
    font-size: 0.8em; /*12px*/
    font-weight: 500;
    line-height: 140%;
    color: #888;
}
/*cuando hay m�s de un p�rrafo*/
.login-intro__text.big{
    font-size: 1.3em;
    font-weight: 600;
}
/*inputs*/
.login .form-control{
    font-size: 0.9em; /*14px*/
    font-weight: 400;
    color: #000;
}
/*texto olvidar contrase�a*/
.remember-password{
    font-size: 0.8em;
    font-weight: 500;
    line-height: 150%;
    color: #337ab7;
}
/*bot�n*/
.login .btn{
    font-size: 1em; /*16px*/
    font-weight: 500;
    text-transform: uppercase;
}
/*mensaje de error*/
.login-error{
    font-size: 0.8em;
    font-weight: 600;
    line-height: 140%;
    color: #fff;
    background-color: #dc3545;
    border-radius: 0.375em;
}
.login-error::before{
    margin-bottom: 0.4em;
    font-size: 2em;
}

/***
    CHECKBOXES STYLES
***/
.custom-checkbox{
    font-size: 1rem;
}
.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.custom-checkbox [type="checkbox"]:not(:checked) + label,
.custom-checkbox [type="checkbox"]:checked + label {
    position: relative;
    height: 16px; /*misma altura que ::before*/
    line-height: 16px;
    padding-left: 22px;
    font-size: 0.8em;
    color: #393939;
    cursor: pointer;
}
/* aspecto del checkbox */
.custom-checkbox [type="checkbox"]:not(:checked) + label::before,
.custom-checkbox [type="checkbox"]:checked + label::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #393939;
    background: #fff;
    border-radius: 2px;
}
/* aspecto de checkbox marcado */
.custom-checkbox [type="checkbox"]:not(:checked) + label::after,
.custom-checkbox [type="checkbox"]:checked + label::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 2px;
    left: 2px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    background-color: #393939;
    border-radius: 2px;
}
/* cambios en aspecto de checkbox marcado */
.custom-checkbox [type="checkbox"]:not(:checked) + label::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.custom-checkbox [type="checkbox"]:checked + label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/* checkbox desactivado */
.custom-checkbox [type="checkbox"]:disabled:not(:checked) + label::before,
.custom-checkbox [type="checkbox"]:disabled:checked + label::before {
    border-color: #bbb;
    background-color: #ddd;
}
.custom-checkbox [type="checkbox"]:disabled:checked + label::after {
    color: #999;
}
.custom-checkbox [type="checkbox"]:disabled + label {
    color: #aaa;
}
/* accessibilidad */
.custom-checkbox [type="checkbox"]:checked:focus + label:before,
.custom-checkbox [type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: 0 0 2px #000;
}

/***
    MEDIA QUERIES
***/
@media screen and (min-width: 576px){
}
@media screen and (min-width: 768px){
}
@media screen and (min-width: 992px){
    .login-form{
        font-size: 1rem;
    }
}

