#conteiner{
    display: flex;
    padding: 80px 0;
}

#conteiner .text{
    width: 30%;
    text-shadow: -5px 4px 24px rgba(0, 0, 0, 0.20);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0 50px;
    flex: none;
}
#conteiner .forms{
    width: 100%;
}
#conteiner .form{
    border-radius: 42px;
    background: #FFF;
    box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.27);
    padding: 40px;
    width: 40%;
    height: auto;
    display: inline-block;
    margin: 0 2%;
    top: -50%;
    transform: translateY(50%);
}
#conteiner .form h1{
    color: #000;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}
#conteiner .form .ou{
    color: #969696;
    text-align: center;
    text-shadow: -5px 4px 14px rgba(0, 0, 0, 0.10);
    font-size: 1.8rem;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
}
#conteiner .form .input{
    margin: 10px 0;
}
#conteiner .form button{
    border-radius: 46px;
    background: #544CDC;
    color: #FFF;
    text-align: center;
    text-shadow: -5px 4px 14px rgba(0, 0, 0, 0.10);
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 30px;
    width: 60%;
    display: block;
    margin: auto;
    border: none;
    outline: none;
}
#conteiner .form .sem-senha{
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 20px;
}
#conteiner .form .checkbox {
    display: flex;
    justify-content: center;
    margin: 10px auto;    
}
#conteiner .form .checkbox label{
    width: 20px;
}

@media only screen and (max-width: 1440px) {
    #conteiner .text{
        display: none;
    }
    #conteiner .forms{
        display: flex;
        justify-content: space-evenly;
    }
}

/* @media only screen and (max-width: 766px) {
    #conteiner .forms{
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    #conteiner .form{
        width: 70% ;
        margin-bottom: 150px;
    }
} */