
            /* CSS Personalizado para la página de login */
/* Div principal, fondo */
body.login {
    background-color: #ffffff;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}

/* Formularios */
#login {
    width: 80%;
    max-width: 400px; 
}

/* Color y bordes formularios */
#login > form, .notice {
    background: #ffffff;
    border: none !important;
    box-shadow: none !important;
}


/* Textos avisos */
.notice {
	border-left: none !important;
}

/* Textos */
.login label, input, .notice {
    font-size: 16px !important;
    color: #000;
}

/* Boton */
.wp-core-ui .button-primary {
    background: #019e8d;
    border-color: #019e8d;
    color: #fff; 
    font-size: 16px;
}

/* Boton al pasar el cursor */
.wp-core-ui .button-primary:hover {
    background-color: #3a4046 !important; 
	border-color: #3a4046 !important;
}

/* Boton ver/ocultar contraseña y enlaces*/
.dashicons, a{
    color: #019e8d !important;
}

/* Boton ver/ocultar contraseña y enlaces al pasar el cursor*/
.dashicons:hover, a:hover {
    color: #3a4046 !important;
}

/* Estilos para el checkbox seleccionado */
.forgetmenot input[type='checkbox']:checked {
    background-color: #019e8d;
    border-color: #019e8d;
}

/* Ocultar selector de idioma y link a la pagina de inicio */
#backtoblog, .language-switcher {
	display:none;
}
            