.container-principal{
    width: 85%;
    display: flex;
    justify-content: center;
    margin: auto;
    background-color: white;
}

.conteudo-principal{
    padding: 2% 2%;
    width: 70%;
}

.nav-lateral{
    padding: 2% 2%;
    width: 30%;
    border-left: 1px solid #C7C7C7;
    display: flex;
    flex-direction: column;
}

.btn-submissao{
    background-color: var(--color-blue-main);
    padding: 6px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;

}

.btn-submissao{
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-submissao.desabilitado{
    background-color: #818181;
    color: white !important;
}

.btn-submissao:hover{
    color: white;
    text-decoration: none;
}

.titulo-sessao{
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 3px solid #015DAA;
}

.idioma{
    display: flex;
    align-items: center;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
}

.idioma svg{
    margin-right: 10px;
}

.idioma:hover{
    color: var(--color-blue-main);
    text-decoration: none;
}

.sessao{
    margin-bottom: 30px;
}

@media (max-width: 768px){
    .nav-lateral{
        display: none;
    }
    .conteudo-principal{
        width: 100%;
    }
}