/*---------------------------------------------*/
/*          Interface de baos vindas           */
/*          SHL - 12/2017                      */
/*---------------------------------------------*/

/*---------------------------------------------*/
/*             Background do body              */
/*---------------------------------------------*/

.boas_vindas .imagem_fundo {
    width: 100%;
    min-width: 100%;
    height: 100vh;
    background: #000 none no-repeat center center;
    background-size: cover;
}



/*---------------------------------------------*/
/*                 Grid mestre                 */
/*---------------------------------------------*/

.boas_vindas .boas_vindas_cabecalho {
    background-color: rgba(0, 0, 0, 0);
    height: 12vh;
    line-height: 12vh;
}

/* O grid não está correspondendo aos 100vh, por isso sua altura é 79 */
.boas_vindas .boas_vindas_conteudo {
    position: relative;
    top: 0;
    width: 100%;
    height: 82vh;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
}

.boas_vindas .boas_vindas_rodape {
    background-color: rgba(0, 0, 0, 0);
    height: 3vh;
    line-height: 3vh;
}



/*---------------------------------------------*/
/*                   Logo                      */
/*---------------------------------------------*/

.boas_vindas_logo {
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
    margin-bottom: 0;
}

.boas_vindas_logo svg {
    width: 200px;    
}


/*---------------------------------------------*/
/*                Grid central                 */
/*---------------------------------------------*/

.boas_vindas_conteudo .boas_vindas_banner_topo {
    background-color: none;
    height: 70px;
    padding: 5px;
    border: 0;
}

.boas_vindas_conteudo .boas_vindas_banner_central {
    background-color: none;
    height: 130px;
    padding: 5px;
    border: 0;
}

.boas_vindas_conteudo .boas_vindas_banner_rodape {
    background-color: none;
    border: 0;
    padding: 5px;
    height: 70px;
}



/*---------------------------------------------*/
/*                   Banner                    */
/*---------------------------------------------*/

.boas_vindas_conteudo .boas_vindas_banner_grid {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.boas_vindas_banner_grid .boas_vindas_banner_topo_titulo {
    font-size: 3.6rem;
    color: #fff;
    font-weight: bold;
    margin-left: 0;
    line-height: 72px;
}

/* A div de fora foi definida com um tamanho para haver quebra de linha */
.boas_vindas_banner_central .boas_vindas_banner_central_div {
    width: 500px;
    margin-left: 0;
    line-height: 130px;
}

.boas_vindas_banner_central_div .boas_vindas_banner_central_texto {
    font-size: 2rem;
    color: #fff;
    font-weight: thin;
    line-height: 1.2;
    margin-left: 3px;
}

/* Configuração do botão da tela de boas vindas*/
.boas_vindas_banner_rodape .color_none {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    width: 150px;
    height: 44px;
}

.boas_vindas_rodape .boas_vindas_rodape_copyright {
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
    margin-left: 0;
}

#loginModalLogar:not(.isVisible) {
    opacity: 0;
    visibility: hidden;
}

#loginModalLogar.isVisible {
    opacity: 1;
    visibility: visible;
}

#loginModalLogar.isVisible.bgBlur ~ div {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
}

#loginModalLogar {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: ease-in-out all .3s;
}

#loginModalLogar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}

#loginModalLogar > div {
    max-width: 400px;
    width: 100%;
    min-height: 500px;
    height: 55vh;
    margin-top: 50vh;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .3);
}

@media only screen and (max-width: 600px) {
    #loginModalLogar > div {
        min-width: 240px;
        width: 100%;
        margin-top: 20px;
        transform: translateY(0%);
    }
}

@media only screen and (max-height: 600px) {
    #loginModalLogar > div {
        /*min-height: 400px;*/
        height: 75vh;
        margin-top: 5vh;
    }
}


@media only screen and (max-height: 400px) {
    #loginModalLogar > div {
        min-height: 320px;
        height: 90vh;
    }
  
    #loginModalLogar > div > .boas_vindas_logo_modal {
        display: none;
    }
}

#loginModalLogar > div > .boas_vindas_logo_modal {
    height: 100px;
    padding: 30px 10px 30px 10px;
}

#loginModalLogar > div > .boas_vindas_logo_modal img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 100%;
}

#loginModalLogar > div > .boas_vindas_formulario_login {
    margin: 0;
    width: 100%;
    height: calc(100% - 115px);
}

#loginModalLogar > div > .field_body.field_botao {
    height: 50px;
}

#loginModalLogar .boas_vindas_formulario_login > div.z-depth-2 {
    box-shadow: none;
}

#loginModalLogar .boas_vindas_formulario_login > div:not(:first-of-type) {
    overflow-y: hidden;
    overflow-x: hidden;
}

#loginModalLogar .boas_vindas_formulario_login .tabs {
    background-color: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

#loginModalLogar .boas_vindas_formulario_login .tabs .tab {
    -webkit-box-flex-grow: 1;
    -moz-box-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
}

#loginModalLogar label {
    color: #fafafa;
}

#loginModalLogar label.active {
    color: #fff;
}

#loginModalLogar input[type=text],
#loginModalLogar input[type=password] {
    color: white;
    font-size: 1.1Em;
}