#form{
    padding: 50px;
    border-radius: 10px;
    border: 1px solid black;
}

#form h2{
    text-align: center;
    padding-bottom: 10px;
}

.form-content{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.form-img{
    width: 150px;
}

.form-tag{
    width: 100%;
    margin-left: 20%;
}

.info{
    display: flex;
    flex-direction:column;
    width:100%
}
.fname{
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border-width: 0;
}

.phone-input{
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border-width: 0;
}

.quantity-selector{
    padding: 10px;
    border-radius: 5px;
    border-width: 0;
}

.form-button{
    background-color: crimson;
    color: white;
    margin-top: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    transition: all 1s;
}

@media only screen and (max-width: 480px){
    .form-content{
        flex-direction: column;
    }
    .form-tag{
        margin-left: 0;
    }
    #form{
        margin-bottom: 20px;
    }
    .form-button{
        width: 100%;
    }
}