.user_service_area,
.review_area {
    display       : flex;
    flex-direction: column;
    align-items   : flex-start;
    padding       : 1.5em;
    width         : 500px;
}

.user_input {
    width        : 450px;
    padding      : .7em 1em;
    margin-bottom: 1em;
    font-size    : 1.2em;
    outline      : 0;
    border       : 0;
}

.user_card {
    display        : flex;
    justify-content: space-between;
}

.user_card>* {
    width: 48%;
}

.payment_method {

    display      : flex;
    align-items  : center;
    margin-bottom: 1em;
}

.payment_method label {
    cursor      : pointer;
    display     : flex;
    align-items : center;
    margin-right: 2em;
    width       : 150px;
}

.payment_method label img {
    width : 20%;
    margin: .5em;
}

.user_payment_amount {
    width          : 100%;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
}

.btn_submit {
    cursor          : pointer;
    width           : 120px;
    padding         : .5em;
    border-radius   : .5em;
    border          : 0;
    outline         : 0;
    background-color: #005691;
    color           : white;
    font-size       : 22px;
    transition      : .2s ease;
}

.btn_submit:hover {
    box-shadow: 2px 2px 10px 0px #005691;
}

.fl_right {
    align-self: flex-end;
}