/* Mobile Geral */
@media (max-width: 1199px) { 

    .secao-home{
        padding: 0px 30px!important;
        margin-top: 75px!important;
        height: calc(100vh - 75px)!important;
    }

    .box{
        flex-direction: column!important;
        height: calc((100vh - 75px)*0.8)!important;
    }

    .conteudo{
        width: 100%!important;
        padding: 40px 40px 49px 40px!important;
    }

    .conteudo-alinhado {
        margin-top: 0px!important;
    }

    .foto{
        width: 100%!important;
        height: 100%!important;

        background-position: 75% 0%!important;
        background-size: 200%!important;
    }

    h1{
        margin-bottom: 40px!important;
    }

    .home{
        padding-top: calc((100vh - 75px)*0.1)!important;
    }

}


/* GERAL */

body{
    
    background: var(--cor-cinza-1);
    
}

.secao-home{
    
    margin-top: 170px;

    width: 100vw;
    height: calc(100vh - 150px);

}

.rwg-rodape{
    
    margin-top: 0px!important;
    
}

#rwg-cabecalho-navegacao .rwg-btn-preto, #rwg-cabecalho-mobile-navegacao .rwg-btn-preto-cabecalho-mobile{
    
    display:none;
    
}

.conteudo-alinhado{

    margin-top: calc(50vh - 395px);
    
}


#txt-alerta{
    
    margin-top: -30px;
    color: #fb3b1e;
    height: 30px;
    
}


/* LOGIN */

.logo{

    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 10px);
    height: 100px;

}

.box{

    border-radius: 10px;
    overflow: hidden;
    background: var(--cor-branco);
    
    display: flex;

    box-shadow: 0px 0px 32px 7px rgb(0 0 0 / 8%);
    
    height: calc(100vh - 340px);
    
    cursor: default;
}

.foto{

    width: 35%;
    
    background-color: var(--cor-principal);
    background-image: url(/uploads/bannerPrincipal.webp);
    background-position: 75%;
    background-repeat: no-repeat;
    background-size: cover;

}

.conteudo{
    padding: 60px;
    border-radius: 15px;
    color: var(--cor-azul-escuro);

    padding-bottom: 115px;
    padding-top: 60px;
    
    width: 65%;
}

h1{
  
  margin-block-start: 0em;
  margin-block-end: 0em;

  text-align: center;

  margin-bottom: 50px;
  font-size: 47px;
  
  font-weight: 900;
font-style: italic;
  
}

form{

    
    width: 100%;

}

input{

    width: 100%;


    padding: 10px;
    border: none;
    outline: none;
    font-size: 15px;
    
    background: var(--cor-cinza-1);
    color:var(--cor-azul-escuro);
    border-radius: 8px;

    margin-bottom: -10px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:var(--cor-azul-escuro);
    opacity: 0.7; /* Firefox */
}

input:-internal-autofill-selected {

    background-image: var(--cor-cinza-1)!important;
    color: var(--cor-azul-escuro)!important;

}

input:-webkit-autofill,
  input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
  }

/* Botoes */

.inputSubmit{

    margin-top: 30px;
    border: none;
    padding: 10px 0px;
    width: 100%;
    border-radius: 10px;
    color: var(--cor-branco);
    font-size: 17px;
    background-color: var(--cor-principal);
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    
}
.inputSubmit:hover{
    
    cursor: pointer;
    
    color: var(--cor-branco);
    background: var(--cor-azul-escuro);
    
}