﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* impede scroll horizontal */
    overflow-y: hidden; /* impede scroll horizontal */
}

.img-holder {
    width: 550px;
    height: 100vh; /* garante que o container terá altura da tela */
    background-image: url('/img/bg_esus_reports.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden; /* força a imagem a não gerar scroll */
    padding: 20px;
}

.logo-dispositivo-movel {
    display: none;
    margin-top: -50px;
}
/* On screens that are 992px or less, set the background color to blue */
@media (max-width: 992px) {
    .logo-dispositivo-movel {
        display: block;
    }

    html, body {
        overflow-y: auto; /* impede scroll horizontal */
    }

}



