
.auth_page{
    display: flex;
    height: 100vh;
    padding: 0px;
    margin: 0px;
}

.auth_page .image_cover{
    width: 55%;
}

section.form_container{
    flex-grow: 1;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.form_container .logo_auth{
    margin: 50px 0px; 
}

section.form_container h1{
    color: #6A1548;
    font-size: 24px;
    font-weight: 750;
    margin-bottom: 15px;
    text-align: center;
    width: 50%;
}

section.form_container form{
    display: flex;
    flex-direction: column;
    width: 50%;
}

section.form_container form input{
    margin: 10px 0px;
    border-radius: 40px;
    height: 50px;
    border: 1px solid #5B6B86;
    text-align: center;
}



section.form_container button{
    width: 50%;
    height: 60px;
    border-radius: 40px;
    margin: 10px 0px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn_google a{
    text-decoration: none;
    color: #6A1548;
}

section.form_container button img{
    width: 24px;
    margin: 0px 7px;
}

.btn_google{
    border: 1px solid #6A1548;
    background: none;
    color: #6A1548;
}

.btn_email{
    border: none;
    background: #6A1548;
    color: white;
}

section.form_container .btn_email a{
    color: white;
    text-decoration: none;
}

section.form_container p{
    color: #6A1548;
    margin: 10px 0px;
    text-align: center;
    width: 80%;
}

section.form_container p a{
    color: #6A1548;
}

@media only screen and (max-width:900px){
    .auth_page .image_cover{
        width: 50%;
    }

}

@media only screen and (max-width:768px){
    
    .auth_page{
        flex-direction: column-reverse;
        height: max-content;
    }

    section.form_container h1{
        width: 80%;
    }

    .auth_page .image_cover{
        width: 100%;
    }

    section.form_container{
        flex-grow: 1;
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }

    section.form_container form{
        width: 80%;
    }

    section.form_container button{
        width: 80%;
    }

}