html, body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
.contenedor {
    height: 100%;
    width: 100%;
}
.fila {
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
    width: 100%;
}
.division {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.division_imagen {
    background-image: url("../img/imagen_presupuesto.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: flex-end;
    padding: 0;
}
.texto-sombra {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 150px;
    background-color: rgba(16, 23, 84, 0.68);
}
.texto-division {
    background-image: url("../img/one-system-for-all.png");
    width: 397px;
    height: 128px;
    margin-right: 30px;
}
#acceso {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
    padding: 40px 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
#img_titulo {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
#img_titulo img {
    max-height: 242px;
    max-width: 100%;
}
#f_ingreso {
    width: 100%;
    margin-top: 10px;
}
.cuadro_texto {
    border: 0;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    outline: none;
    width: 100%;
    padding: 10px 5px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
    background: transparent;
}
.cuadro_texto:focus {
    border-bottom-color: #1E7FE8;
}
.cuadro_texto::placeholder {
    color: #aaa;
    font-size: 13px;
}
/* Azul solido y plano, igual que la accion principal del resto de la
   aplicacion (.crud-btn-create). Llevaba un degradado cian->azul con sombra de
   color y un salto de 2px al pasar el cursor; el degradado se quito de todos
   los botones y este era el ultimo que quedaba. */
#btn_ingreso {
    margin-top: 25px;
    margin-bottom: 15px;
    background: #1450B4;
    width: 100%;
    color: #fff;
    border: 1.5px solid #1450B4;
    height: 46px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}
#btn_ingreso:hover {
    background: #0F3F8F;
    border-color: #0F3F8F;
}
#btn_ingreso:active {
    background: #0C3372;
    border-color: #0C3372;
}
/* No lo tenia: sin esto, tabular hasta el boton de entrar no se ve. */
#btn_ingreso:focus-visible {
    outline: 3px solid rgba(30, 127, 232, 0.45);
    outline-offset: 2px;
}

.wsi {
    font-size: 11px;
    width: 100%;
    text-align: center;
    color: #bbb;
    margin-top: 5px;
}
.alert-danger {
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
}
@media screen and (max-width: 995px) {
    .division_imagen {
        display: none;
    }
    .division {
        flex: 1 1 100%;
    }
}
