/* Ocultar el logo original de Centreon en el login */
#loginHeader img.css-3wn8jn-imageContent-loginElementItem {
    display: none !important;
}

/* Insertar tu logo personalizado como pseudo-elemento en el contenedor */
#loginHeader::before {
    content: "" !important;
    display: block !important;
    width: 220px !important;
    height: 90px !important;
    margin: 0 auto 20px auto !important;
    background-image: url('img/VIGIA-black.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Ocultar el fondo original */
img.css-bi2bdc-imageContent-wallpaper {
    opacity: 0 !important;
    position: fixed !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Insertar tu fondo como background en el body del login */
body, 
#root,
.css-1qrw7lg-loginElement,
.login-page {
    background-image: url('img/VIGIA-background.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}
