.order-call {
    background-color: #F5F5F5;
}
.order-call__title {
    padding: 50px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;

}
.order-call__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.order-call__form input,
.order-call__form button {
    width: 100%;
    height: 50px;
    border: none;
}
.order-call__form input {
    width: 100%;
    height: 50px;
    margin: 0 0 20px 0;
    padding: 0 0 0 10px;
    border: 1px solid #f5f5f5;
}
.order-call__form input.error {
    border: 1px solid #FF0000;
}
.order-call__form button {
    margin: 0 0 80px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border-radius: 4px;
}

@media screen and (min-width: 992px) {
    .order-call__form {
        padding: 0 0 100px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    .order-call__form input,
    .order-call__form button {
        margin: 0;
    }
}