/*-------------------------------------------FONTS-------------------------------------------*/

@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Regular.ttf);
}

/*-----------------------------------------VARIABLES------------------------------------------*/
:root {
    --background-inicio: #FFF;
    --background: rgb(255, 255, 255);
    --color-control-usuario: rgb(120, 120, 120);
    --color-derechos: rgb(80, 80, 80);

}

/*-------------------------------------------GENERAL-------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 255);
    user-select: none;
}

:root {
    --background-inicio: #FFF;
    --background: rgb(255, 255, 255);
    --color-control-usuario: rgb(120, 120, 120);
    --color-derechos: rgb(80, 80, 80);

}
.mensaje{
    height: 30px;
    width: 100%;
    margin-top: 5px;
    line-height: 30px;
    display: none;
}

.mensaje--error{
    background-color: rgb(248,215,218);
    border: 1px solid rgb(245, 194, 199);
    color: rgb(147, 21, 41);
    transition: 3ms;
}
.mensaje--procesando {
    background-color: rgb(207, 226, 255);
    border: 1px solid rgb(182, 212, 254);
    color: rgb(8, 66, 152);
	transition: 3ms;
}

.inicio {
    background-color: var(--background-inicio);
    border: none;
    height: 40px;
    line-height: 40px;
    display: none;
}

.sistema {
    font-family: 'Roboto', sans-serif;
    color: rgb(80, 80, 80);
    font-size: 18px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;

}

.sistema__texto {
    display: none;
}

.logo {
    position: relative;
    float: left;
    width: 180px;
    height: 40px;
    background-color: #FFF;
    margin-top: 3px;
    margin-left: -8px;
    padding: 0;
}

.logo img {
    top: 2px;
    width: 90%;
    height: 90%;
}

.contenido {
    background-color: var(--background);
    height: 100%;
    overflow: hidden;

}

.contenido__principal {
    width: 100%;
    height: 500px;
    margin: 0;
    border: 0px;
    box-shadow: none;
    background-color: var(--background);
    top: 20px;
    overflow: hidden;
    padding-top: 30px;

}

.bienvenida {
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: var(--color-control-usuario);
    text-align: center;
    margin-top: 10px;

}

.acceso {
    width: 500px;
    height: 370px;
    padding: 20px;
    position: relative;
    text-align: center;
    margin: 0 auto;
    top: 20px;
    border: .08em solid rgb(220, 220, 220);

}

.acceso__inicio {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    font-size: 20px;
    color: rgb(80, 80, 80);
}



.acceso__cajas {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 40px;
    font-size: 16px;
    text-align: left;
    color: rgb(180, 180, 180);
    padding: 10px;

}

.acceso__cajas.usr {
    border-top: .09em solid rgb(230, 230, 230);
    border-right: .09em solid rgb(230, 230, 230);
    border-bottom: .09em solid rgb(230, 230, 230);
    border-left: .09em solid rgb(230, 230, 230);
    margin-bottom: 10px;

}

.acceso__cajas.usr:hover {
    border: .09em solid rgb(102, 175, 233);
    outline: none;

}

.acceso__cajas.usr:focus {
    border: .09em solid rgb(102, 175, 233);
    background-color: rgb(240, 240, 240);
    outline: none;

}

.acceso__cajas.pwd {
    border-top: .09em solid rgb(230, 230, 230);
    border-right: .09em solid rgb(230, 230, 230);
    border-bottom: .09em solid rgb(230, 230, 230);
    border-left: .09em solid rgb(230, 230, 230);
    margin-bottom: 10px;

}

.acceso__cajas.pwd:hover {
    border: .09em solid rgb(102, 175, 233);
    outline: none;

}

.acceso__cajas.pwd:focus {
    border: .09em solid rgb(102, 175, 233);
    background-color: rgb(240, 240, 240);
    outline: none;
}

.acceso__lista {
    width: 100%;
    height: 40px;
    font-size: 16px;
    text-align: left;
    color: rgb(180, 180, 180);
    padding: 5px;
    border: .09em solid rgb(230, 230, 230);
    outline: none;

}

.acceso__btnEntrar {
    background-color: rgb(255, 100, 0);
    display: inline-block;
    color: #fff;
    font-size: 12px;
    margin: 20px 0px;
    padding: 10px 0px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.acceso__btnEntrar:hover {
    background-color: rgb(96, 97, 98, .8);
    color: whitesmoke;
    transition: 0.3s;
}

.cerrar_sesion {
    display: none;
}

.inicio-bi {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    font-size: 28px;
    color: rgb(255, 201, 14);
    text-align: center;
    width: 100%;
}

.inicio-bi figure img {
    width: 200px;

}

.derechos {
    width: 100%;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    color: var(--color-derechos);
    top: -30px;
    text-align: center;
}

.olvidopwd {
    width: 100%;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    line-height: 40px;
    display: none;
    color: rgb(39, 123, 233);
    margin-top: 4px;

}

.olvidopwd:hover {
    background-color: rgb(246, 250, 254);
    transition: 0.3s;
}

@media (max-width:768px) {
    body {}

    .inicio {
        display: none;
    }

    .cerrar_sesion {
        display: none;
    }

    .contenido {
        overflow: hidden;
    }

    .contenido__principal {
        width: 100%;
        height: 100%;
        margin: 0;
        border: 0px;
        box-shadow: none;
        padding: 0;
        overflow: hidden;
        padding-top: 10px;

    }

    .acceso {
        position: relative;
        float: left;
        width: 99%;
        height: 70%;
        margin: 1px;
        text-align: center;
        top: 10px;
        border: none;

    }

    .acceso__inicio {
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 500;
        line-height: 40px;
        font-size: 20px;
        color: rgb(80, 80, 80);
    }

    .acceso__btnEntrar {
        width: 100%;
        margin: 20px 0px;
        padding: 10px 0px;
        display: inline-block;
        background-color: rgb(255, 100, 0);
        box-shadow: 0px 3px 0px rgb(255, 100, 0);
        font-size: 12px;
        color: #fff;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .acceso__btnEntrar:hover {
        background-color: rgb(96, 97, 98, .8);
        box-shadow: 0 4px 2px -2px #bfbfbf;
        color: whitesmoke;

    }

    .acceso__cajas {
        width: 100%;
        height: 40px;
        border: 1px solid rgb(200, 200, 200);
        font-size: 16px;
        text-align: left;
        color: rgb(180, 180, 180);
        padding: 10px;

    }

    .acceso__lista {
        width: 100%;
    }

    .inicio-bi {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 500;
        line-height: 40px;
        font-size: 28px;
        color: rgb(255, 201, 14);
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .inicio-bi figure img {
        width: 200px;

    }

    .bienvenida {
        font-size: 18px;
    }
}
