/* -------------------- */
/* ------- LOGIN ------ */
/* -------------------- */

.main-login{
    height: 510px;

    padding: 70px 150px 70px 150px;
}

.main-login form{
    height: 220px ;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    margin-top: 60px;
}

form label{
    display: none;
}

form input{
    width: 600px;
    padding: 10px 30px 10px 30px;

    border-radius: 20px;
    border: 2px solid #8C4848;
    background: #FFF;

}

button{
    padding: 10px 40px 10px 40px;
    width: fit-content;

    border-radius: 20px;
    border: 2px solid #8C4848;
    background: none;

    color: #8C4848;

    /* transform: scale(1); */
    transition: all 0.2s ease-in-out;
}

button:hover{
    border: 2px solid #8C4848;
    background: #8C4848;

    color: white;

    /* transform: scale(1.1); */
}



/* -------------------- */
/* ------ SIGN UP ----- */
/* -------------------- */


.main-signup{
    height: 700px;

    padding: 70px 150px 70px 150px;
}

.main-signup form{
    height: 420px ;
    margin-top: 60px;
}

#sign_up{
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */

@media screen and (max-width: 1000px) {

    form input{
        width: 100%;
        margin-bottom: 50px;
        border: 4px solid #8C4848;
    }

    button{
        border: 4px solid #8C4848;
    }


}

