@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --branco: #ffffff;
    --light: #f0eff3;
    --preto: #000000;
    --azulclaro: #02BAFA;
    --violeta: #6b07fa;
    --vermelho: #da2c4d;
    --laranja: #fc9701;
    --amarelo: #ffc107;
    --cinza: #ecedf3;
    --azul: #0068b3;
    --verdeclaro: #189f0d;
    --verdeescuro: #346d23;
    --somos: #EE2F80;
    --cogna: #682D8E;
    --onhover: #5a5a5a;
}

body, html{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Open Sans', sans-serif; font-weight: 300;
    height: 100%;
    min-height: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #0d160b;
}

.fotouser{
    width: 50px;
    margin: -16px 5px 10px;
    border-radius: 50%;
    border: none;
}

/* Preloader */
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* cor do fundo  - branco */
    z-index:999999; /* ficar sempre no top dos layers  */
}

#carregador {
    width:200px;
    height:200px;
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    background-image:url(https://portalsomos.com.br/images/geral/loader.gif); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px; /* is width and height divided by two */
}

.formlogin{
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
}

.especial{
    width: 100%;
    min-height: calc(100vh - 50px);
}
.rodape{
    height: 50px;
    background-color: #838383;
    text-align: center;
    color: #ffffff;
    line-height: 50px;
    font-size: 11px;
}

@media only screen and (max-width: 768px) {
    .formlogin{
        max-width: 75%;
    }
}

@media only screen and (max-width: 600px) {
    .formlogin{
        max-width: unset;
    }
    .especial{
        min-height: calc(100vh - 30px);
    }
    .rodape{
        height: 30px;
        line-height: 30px;
    }
}



