body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}
a{
    text-decoration: none;
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: -webkit-fill-available;
    background: repeating-linear-gradient(45deg, #e9ecff, transparent 50%);
    overflow: hidden;
}
.sobre{
    height: 100vh;
    width: 30%;
    background: #8686ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 50px 50px 0;
    color: aliceblue;
}
.conteudo{
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.form_login{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.397);
    width: 400px;
    background: #e8f0fe;
    height: max-content;
}
.modalM{
    position: absolute;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffbf;
}
.msg_modal{
    background: aliceblue;
    border-radius: 20px;
    padding: 3vh;
    display: flex;
    flex-direction: column;
    min-width: 192px;
    align-items: center;
    box-shadow: 0 0 3px 0px black;
    animation: expandir 0.4s;
}

#iconMsg{
    color: burlywood;
    font-size: 7vh;
}
.input_content{
    display: flex;
    flex-direction: column;
}
.input_camp{
    display: flex;
    align-items: center;
    margin: 1em;
    width: -webkit-fill-available;
    border: 2px solid #00000029;
    border-radius: 10px;
    animation: moveSlow 0.7s;
}
.input_camp input{
    border-radius: 10px;
    padding: 12px;
    border: none;
    outline: none;
    font-size: inherit;
    background: rgba(240, 248, 255, 0);
    color: #087c80;
}
.input_camp .material-symbols-outlined{
    padding: 12px;
    border: none;
    outline: none;
    font-size: larger;
    background: rgba(240, 248, 255, 0);
    color: #087c80;
}
.input_camp strong{
    padding: 1px;
    margin-left: 16px;
    margin-bottom: -12px;
    z-index: 2;
    background: aliceblue;
    color: cadetblue;
    border-radius: 11px;
}
.input_sec{
    display: flex;
    justify-content: flex-end;
}
.msg_div{
    display: flex;
    justify-content: space-between;
    background: #fff2f2;
    margin: 1em;
    padding: 12px;
    border-radius: 6px;
    align-items: center;
}
.saveCad{
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #7c7cffb8;
    color: white;
    display: flex;
    align-items: center;
    margin: 1rem;
    /* box-shadow: 3px 5px 8px 0px rgba(0, 0, 0, 0.26); */
    transition: all 0.7s ease-in-out;
    animation: movement 0.2s;
    width: -webkit-fill-available;
    justify-content: center;
    font-size: large;
}
.saveCad:hover{
    cursor: pointer;
    background: rgba(0, 173, 38, 0.562);
}
.bottom{
    position: absolute;
    width: -webkit-fill-available;
    display: flex;
    justify-content: center;
    color: aliceblue;
}
@keyframes moveSlow {
    from{
        transform: translateX(-40px);
    }
    to{
        transform: translateX(0px);
    }
}
@keyframes expandir {
    from{
        transform: scale(0.8);
    }
    to{
        transform: scale(1);
    }
}
@media (max-width: 800px) {
    .form_login{
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        height: -webkit-fill-available;
    }
    .sobre{
        display: none;
    }

}

@keyframes tremer {
    0%{
        transform: translateX(-10px);
        border: 3px solid rgb(255, 0, 0);
    }
    25%{
        transform: translateX(10px);
    }
    50%{
        transform: translateX(-10px);
    }
    75%{
        transform: translateX(10px);
    }
    100%{
        transform: translateX(0);
        border: 3px solid rgb(0 0 0 / 43%);
    }
}

#bolinha{
    position: absolute;
    left: 3px;
    bottom: 3px;
    background: #8686ff;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    animation: efect_invert 0.7s linear;
}

@keyframes efect {
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(500);
    }
}

@keyframes efect_invert {
    from{
        transform: scale(400);
    }
    to{
        transform: scale(0);
    }
}