/* VALORES UNIVERSAIS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body, html{
    width: 100%;
    height: 100%;
}
/* ---------------------------- */
.section-center{
    margin: 0 auto;
    width: 100%;
    max-width: 2000px;
    height: 100%;
    max-height: 1000px;
    display: flex;
    /*background-color: aqua;*/
}
.section-login{
    width: 350px;
    height: 100%;
    background-color: #3A405A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.section-body{
    width: calc(100% - 350px);
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* SECTION DO LOGIN */
.log-container-title{
    width: 100%;
    display: flex;
    justify-content: center;
}
.log-container-title span{
    color:#979DAC;
    margin-top: 15px;
}
.log-container-login-full{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.log-container-login-full > span{
    margin-bottom: 5px;
    color:#979DAC;
    font-size: 14px;
}
.log-container-login{
    width: 250px;
    height: 300px;
    border: 1px solid #979DAC;
    border-radius: 6px;
    background: white;
    display: flex;
    flex-direction: column;
}
.log-container-dev{
    width: 100%;
    display: flex;
    justify-content: center;
}
.log-container-dev span{
    color:#979DAC;
    font-size: 11px;
    margin-bottom: 5px;
}
/* FORMULARIO DE LOGIN */
.log-formulario{
    width: 80%;
    margin: 0 10%;
}
.log-formulario-row{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.log-formulario-row span{
    font-size: 11px;
    color: #3A405A;
}
.log-formulario-row input[type=text]{
    width: 100%;
    outline: 0;
    border: none;
    border-bottom: 1px solid #3A405A;
    background: transparent;
    text-transform: uppercase;
    padding: 4px 2px;
    margin-top: 5px;
}
.log-formulario-row input[type=password]{
    width: 100%;
    outline: 0;
    border: none;
    border-bottom: 1px solid #3A405A;
    background: transparent;
    text-transform: uppercase;
    padding: 4px 2px;
    margin-top: 5px;
}
.log-formulario-log{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.log-formulario-log input[type=submit]{
    width: 40%;
    outline: 0;
    border: none;
    border: 1px solid #3A405A;
    border-radius: 6px;
    background: transparent;
    padding: 5px 4px;
    font-size: 12px;
    color: #3A405A;
    cursor: pointer;
}
/* SECTION DAS IMAGENS E DAS MENSAGENS */
.container-body{
    width: 80%;
    height: 95%;
    margin: 2.5% 10%;
    display: flex;
    flex-direction: column;
}
.msg-container-full{
    width: 500px;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
}
.msg-container-full span:nth-child(1){
    font-size: 14px;
    font-style: italic;
    color: #3A405A;
}
.msg-container-full span:nth-child(2){
    font-size: 12px;
    font-style: italic;
    color: #3A405A;
    margin-top: 3px;
    margin-left: 2px;
}
.msg-container-msg-cover{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg-img-full{
    width: 80%;
    background-image: url('../img/img-fundo.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 80%;
}

/* POUP DO INDEX */
.popup-container{
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 9999;
    width: 200px;
    height: 60px;
    border: 1px solid #3A405A;
    border-radius: 6px 0 0 6px;
    display: none;
}
.container-msg-full{
    width: 100%;
    height: 100%;
    display: flex;
}
.popup-container-left{
    width: 5px;
    background-color: #3A405A;
    height: 100%;
    border-radius: 6px 0 0 6px;
}
.container-msg-popup{
    width: calc(100% - 5px - 10px);
    height: 100%;
    margin: 0 10px;
    display: flex;
    align-items: center;
}
.container-msg-popup span{
    font-size: 12px;
}

/* REPSONSIVE */
@media only screen and (max-width: 1000px) {
    .section-body{
        display: none;
    }
    .section-login{
        width: 100%;
    }
    .popup-container{
        border: 1px solid #979DAC;
    }
    .popup-container-left{
        background-color: #979DAC;
    }
    .container-msg-popup span{
        color: #979DAC;
    }
  }