
.center-form {
    width: 50%;
}
@media screen and (max-width: 900px) {
    .center-form {
        width: 100%;
    }
}

.form_wrapp form {
    padding: 20px;
}

.change-form,
.filter-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.change-form a,
.filter-block a {
    color: #0b54a0;
}

.change-form a:hover,
.filter-block a:hover {
    text-decoration: underline;
}

.form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-control label {
    margin-bottom: 10px;
}

.form-control input,
.form-control textarea {
    border: solid 2px #f4f4f4;
    background-color: #f4f4f4;
    border-radius: 15px;
    margin-bottom: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.form-control input:focus,
.form-control textarea:focus {
    background-color: #FFFFFF;
}

.btn-center{
    display: block;
    margin: 10px auto;
}