form.contact-message-feedback-form {
    display: block;
    width: 760px;
    margin: 0 auto;
}
.form-item {
    display: flex;
    justify-content: space-between;
}
.form-item.form-type-textarea {
    flex-direction: column;
}
.form-item label {
    min-width: 170px;
} 
input.form-text, input.form-email {
    box-sizing: border-box;
}
.captcha {
    display: flex;
    justify-content: center;
}
div.form-actions {
    display: flex;
    justify-content: space-evenly;
}

@media screen and (min-width: 768px) and (max-width: 11023px) {
   form.contact-message-feedback-form {
       width: 570px;
   }
	input.form-text, input.form-email {
        max-width: 393px;
    }
}
@media screen and (max-width: 767.5px) {
   form.contact-message-feedback-form {
       width: 100%;
   }
  .form-item {
     flex-direction: column;
  }
   input.form-text, input.form-email {
        width: 100%;
   }
}