@font-face {
    font-family: "Lato";
    src: url(../fonts/Lato-Regular.ttf);
}
* {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: #ECECEC;
    height: 100vh;
    /*IMPORTANTE*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.contenedor_login {
    width: 350px;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    border-top: 3px solid #325191;
}
.contenedor_logo {
    padding: 20px 0;
    border-bottom: 1px solid #C0C0C0;
}
.logo_login {
    display: block;
    width: 90%;
    margin: auto;
}
.titulo_login {
    display: block;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contenedor_texto {
    display: flex;
    padding: 5px;
    margin-bottom: 10px;
}
.login_text {
    display: block;
    width: 85%;
    padding: 8px;
    border: 1px solid rgba(0,0,0,0.3);
    font-size: 16px;
    border-radius: 2px;
}
.contenedor_icono {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #DAD7D7;
    border-radius: 2px;
    margin-left: -5px;
    border: 1px solid rgba(0,0,0,0.3);
}
.btnLogin {
    display: block;
    background: #325191;
    color: #FFFFFF;
    padding: 10px 20px;
    border: 0;
    font-size: 16px;
    margin-left: auto;
    margin-right: 5px;
    border-radius: 2px;
    cursor: pointer;
}
.enlace_recuperacion {
    display: block;
    margin-top: 40px;
    text-align: right;
    color: #1997C6;
}

/*============================= PAGINA DE SELECCIONAR OFICINA =============================*/
.Contenedor_Flexible{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.Columna_25 {
    width: 25%;
}
.Columna_50 {
    width: 50%;
}

.Contenedor_oficinas {
    position: relative;
    background-image: url('../img/fondo_logistica.jpg');
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.Contenedor_oficinas:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100vh;
    background: rgba(50,81,145,0.6);
}
.Contenedor_oficinas_link {
    position: relative;
    z-index: 5000;
}
.titulo_seleccionOficinas {
    display: block;
    padding: 30px;
    text-align: center;
    color: #FFFFFF;
    font-size: 35px;
    font-weight: bold;
    border-bottom: 1px solid #FFFFFF;
}
.link_seleccionOficinas {
    display: block;
    padding: 20px;
    width: 90%;
    height: 70px;
    background: #325191;
    color: #FFFFFF;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    
}

/* ============================= PAGINA REQUERIMIENTO GENERAL ==============================*/
.Contenedor_requerimientoGeneral {
    position: relative;
    width: 85%;
    margin: auto;
}
.link_requerir {
    background: #2FAB75;
    border: 0;
    border-radius: 5px;
    padding: 4px 10px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
}
.titulo_requerimientoGeneral {
    display: block;
    color: #325191;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    border-bottom: 1px solid #325191;
    margin-bottom: 20px;
    margin-top: 20px;
}
.subtitulo_requerimientoGeneral {
    display: block;
    color: #B82633;
    padding: 5px;
    font-size: 20px;
    margin-bottom: 10px;
}
.titulo_productos_seleccionados{
    display: block;
    margin-top: 40px;
    border-bottom: 1px solid black;
    font-size: 25px;
}
.Tabla_Requerimiento {
    width: 100%;
    margin-bottom: 40px;
}

.Tabla_Requerimiento th{
    text-align: center;
}
.Caja_Tabla {
    width: 100%;
    padding: 5px;
}
#form_requerimientoGeneral {
    background: rgba(43,171,117,0.2);
    padding: 20px;
    margin-top: 20px;
}
.btnQuitar {
    display: block;
    background: #922C21;
    border: 0;
    border-radius: 5px;
    padding: 2px 10px;
    color: #FFFFFF;
    margin-left: 2px;
    font-size: 18px;
}
.nuevo {
    background: #FFFFFF;
    color: #325191;
    border: 1px solid #325191;
}
.btnGuardar {
    display: block;
    background: #325191;
    color: #FFFFFF;
    border: 0;
    cursor: pointer;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
}
.titulo_formRequerimiento {
    display: block;
    font-size: 30px;
    padding: 5px;
    font-weight: bold;
    color: rgba(0,0,0,0.7);
    margin-bottom: 15px;
}
.form_label {
    display: block;
    color: rgba(0,0,0,0.7);
    font-size: 20px;
    padding: 5px;
}
.form_text {
    display: block;
    width: 100%;
    padding: 5px;
    font-size: 20px;
    margin-bottom: 10px;
}
.form_select{
    display: block;
    padding: 5px;
    font-size: 20px;
    width: 95%;
}