

/* Fondo de pantalla */

html, body {
    /*font-family: 'Inter', 'Montserrat', sans-serif;*/
    font-family: 'Lato', sans-serif !important;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.2px;
}


/* Forzar en Bootstrap */
body,
input,
button,
select,
textarea,
.nav,
.navbar,
.sidebar,
.panel,
.table,
.form-control,
.btn {
    /*font-family: 'Inter', sans-serif !important;*/
    font-family: 'Lato', sans-serif !important;
}

/* Caja de contenido */
.login_content {
    margin: 0 auto;
    padding: 25px 0 0;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    min-width: 280px;
}


/* Título */
.login_content h1 {
    margin-bottom: 25px;
    /*font-weight: 600;*/
    font-size: 24px;
    /*color: #2a5298;*/
    color: #2A3F54;
    /*font-family: 'Inter', 'Montserrat', sans-serif;*/
    letter-spacing: 0;
    line-height: 20px;
    margin: 10px 0 30px;
}

.login_content h1:after, .login_content h1:before {
    content: "";
    height: 2px;
    position: absolute;
    top: 10px;
    width: 20%;
    background: #eaeaea;
    right: 0;
}

/* Inputs */
.login_content .form-control {
    border-radius: 12px;
    height: 48px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

/* Botón de submit */
.login_content .btn {
    width: 100%;
    border-radius: 12px;
    height: 48px;
    font-weight: 600;
    font-size: 15px;
    background-color: #2a5298;
    border: none;
    color: white;
    transition: all 0.2s ease;
}

.login_content .btn:hover {
    background-color: #1f3c88;
}



/* Enlace de "Olvidaste tu contraseña?" */
.forgot-password {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #2a5298;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Separador y pie de página */
.separator {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eaeaea;
}

.separator h1 {
    font-size: 18px;
    margin-bottom: 6px;
    /*color: #2a5298;*/
    color: #2A3F54;
}

.separator p {
    font-size: 12px;
    color: #777;
}