#info_contato{
    position: absolute;
    color: white;
    z-index: 10;
    bottom: 6px;
    left: 7px;
    font-family: monospace;
    text-shadow: 2px 0px 4px #000000;
    opacity: 0.8;
    font-size: 12px;
}

#formFooter{
    position: absolute;
    bottom: 13px;
    font-family: ui-sans-serif;
}

#bt_logar_sistema:hover {
    background-color: #028ee5;
    color: #ffffff;
    padding: 11px 38px;
}
#bt_logar_sistema {
    cursor: pointer;
    background: #f6f6f6;
    color: #454545;
    padding: 11px 32px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 14px;
    font-size: 18;
    border: solid 1px #e9e9e9;
    margin: 25px 20px 40px 20px;
    transition: all 0.1s ease-in-out;
}

.fundo_img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

}

.label_lg{
    text-align: left;
    margin: 15px 0 0 0;
    font-size: 17px;
    font-family: sans-serif;
    color: #a2a2a2;
}

#content_splits{
    display: flex;
    height: 100%;
}

#content_login img.img_logo{
    width: 60%;
    max-width: 250px;
    background: #333333;
    border-radius: 17px;
    margin-bottom: 20px;
    padding: 10px 20px;
}

#content_login{
    width: 100%;
    text-align: center;
    padding: 2% 8%;
    margin-top: -120px;
    background: #fdfdfd;

    margin: -43px 12% 5% 12%;
    border-radius: 15px;
    box-shadow: -1px 0px 20px 7px #e4e4e4;
}



#split_login{
    background: linear-gradient( 45deg, #ffffff, #ffffff);
    width: 40%;
    height: 100%;
    

}
#split_conteudo{
    width: 60%;
    height: 100%;
    background: white;
    overflow: hidden;
    opacity: 0;
    transition: all 0.8s ease;
    transform: translate(-20%)
}


.input_login{
    padding: 7px 4px;
    border-radius: 6px;
    width: 100%;
    font-size: 22px;
    color: #006dc3;
    font-weight: 700;
    border: solid 2px #f1f1f1;
    outline: none;
    background: white;
    text-align: center;
}

.centered{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}



@media only screen and (max-width: 768px) { /*Adicione essta classe para remover algo em mobile*/
    #split_login{
        /*background: linear-gradient( 45deg, #f1f1f1, #c3c3c3);*/
        width: 100%;
        height: 100%;

    }
    #split_conteudo{
        width: 0%;
        height: 100%;
        background: white;
    }

    #content_login{
        margin: -43px 5% 5% 5%;
    }
}






/*testef*/

html,body {
    margin: 0;
    width: 100%;
    height: 100%;
    /*font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;*/
}


.content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-wrapper {
    /*            font-size: 28px;
                color:#aaa;
                font-weight: bold;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                justify-content: center;*/


    font-family: sans-serif;
    font-size: 2vw;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    text-shadow: -3px 0px 8px #4a4a4a;
    background: linear-gradient( 
        180deg, #0000003b, transparent);
    width: 100%;
    padding: 72px 0px 8px;


}
.slider{
    height: 50px;
    padding-left:15px;
    overflow: hidden;
    text-shadow: none;
}
.slider div {
    color: #fff;
    height: 50px;
    margin-bottom: 50px;
    padding: 2px 15px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-content: center;
    align-items: center;
    border-radius: 30px;
    width: fit-content;
    width: -moz-fit-content;
}
.slider-text1 {
    background: linear-gradient( 
        45deg, #4caf50, #579213);
    animation: slide 6s linear infinite;
}
.slider-text2 {
    background: linear-gradient(
        45deg, #2196f3, #00579c);
}
.slider-text3 {
    background: linear-gradient( 
        45deg, #ff9800, #c77905);
}
.slider-text4 {
    background: linear-gradient( 
        45deg, #9c27b0, #63296d);
}
@keyframes slide {
    0% {margin-top:50px;}
    2% {margin-top:0px;}
    25% {margin-top:0px;}
    30% {margin-top:-100px;}
    50% {margin-top:-100px;}
    55% {margin-top:-200px;}
    75% {margin-top:-200px;}
    80% {margin-top:-300px;}
    97% {margin-top:-300px;}
    100% {margin-top:-350px;}


}