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

#form h2 {
    text-align: center;
    padding-bottom: 10px;
    font-size: 1.5em;
}

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

.form-img {
    width: 150px;
    margin-bottom: 10px;
}

.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: 1px solid;
}

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

.quantity-selector {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid;
}

.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 screen and (max-width: 480px){
    .form-content{
        flex-direction: column;
    }
    .form-tag{
        margin-left: 0;
    }
    #form{
        margin-bottom: 20px;
    }
    .form-button{
        width: 100%;
    }
}