/*
Theme Name:     Hello Elementor Child
Theme URI:      https://cismalaga.es/hello-elementor-child
Description:    Tema hijo para el tema Hello Elementor
Author:         CISM
Author URI:     https://cismalaga.es
Template:       hello-elementor
Version:        1.0.0
*/

body.login {
    background-color: #e0e3d8 !important; /* Un color de respaldo */
    position: relative; /* Necesario para el pseudo-elemento */
    overflow: hidden; /* Para que el pseudo-elemento no se salga */
}

body.login::before {
    content: "";
    position: fixed; /* Cubre toda la ventana */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/fondo-header3.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    opacity: 0.6; /* Ajusta este valor para la suavidad deseada (0 a 1) */
    z-index: -1; /* Coloca la imagen detrás del contenido */
}