#sign_up_section{
    overflow: hidden;
    justify-content: center;
}
#sign_up_form{
    width: 200vw;
    display: flex;
    flex-direction: row;
}
/*_______________________________ STEP 1 */
#su_step1{
    position: relative;
    padding: 10vh 2.5vw 0 2.5vw;
    min-height: 90vh;
    width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F4F4F4;
    box-shadow: 34px 38px 139px 17px rgba(89,87,87,0.12);
    -webkit-box-shadow: 34px 38px 139px 17px rgba(89,87,87,0.12);
    -moz-box-shadow: 34px 38px 139px 17px rgba(89,87,87,0.12);
}
.sign_up_input_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sign_up_input_container input{
    margin-bottom: 30px;
}

/*_______________________________ STEP 2 */
#su_step2{
    position: relative;
    padding: 10vh 2.5vw 0 2.5vw;
    height: 90vh;
    width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F4F4F4;;
}
#su_step2 p{
    padding: 0 10%;
    font-size: 20px;
}

/*_______________________________ animation */
.pop_scale{
    animation: pop_scale 1.2s;
}

@keyframes pop_scale {
    50%{
        transform: scale(0.90);
    }
    100%{
        transform: scale(1);
    }
}

.slide_right{
    animation: slide_right 1s;
    animation-fill-mode: forwards;
}

@keyframes slide_right {
    100%{
        transform: translate(-50%);
    }
}