.signUp-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.signup-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.signup-right{
    background: url('../images/backgroundSign.png');
    background-color: #E96101;
    width: 430px;
    height: 500px;background-size: cover;
    color:white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 0px 10px black;
    /* padding: 10px; */
}
.signup-left{
    max-width: 400px;
    text-align: center;
    margin: 20px;
    width: 100%;
}
.signup-form{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.signup-form input{
    width:90%;
    padding: 10px;
    border:none;
    border-bottom: 1px solid #E96101;
    font-size: 16px;
    outline: none;

}
.signup-form button{
    margin: 10px;
    padding: 10px;
    background-color: #E96101;
    border: none;
    color: white;
    font-size: 18px;
    
}

@media screen and (max-width:600px){ 
.signup-content{
    flex-direction: column;
}
.signup-right{
    max-width: 400px;
    width:100%;
}
.signup-left{
    max-width: 400px;
    width:100%;
}
}