@media only screen and (min-width: 200px) {
  .field_basket {
    padding: 6px 0 0;
    position: relative;
  }
  .field_basket input,
  .field_basket select {
    width: 100%;
    height: 50px;
    background-color: transparent;
    padding: 20px 16px;
    color: #2e3f4c;
    font-size: 18px;
    border: 3px solid #a7c5dd;
    outline: none;
    transition: 0.3s ease-in-out;
  }
  .field_basket input[type="file"] {
    padding: 6px 16px;
  }
  .field_basket select {
    padding: 7px 16px;
  }
  .field_basket.photo input[type="file"] {
    padding: 5px 16px;
  }
  .field_basket input.inputfield_success_state {
    border: 3px solid #00bf63;
  }
  .field_basket textarea {
    width: 100%;
    height: 230px;
    background-color: transparent;
    padding: 20px 16px;
    color: #2e3f4c;
    font-size: 18px;
    border: 3px solid #a7c5dd;
    outline: none;
    transition: 0.3s ease-in-out;
  }

  .field_basket label {
    position: absolute;
    top: 12px;
    left: 20px;
    padding: 0 6px;
    font-size: 22px;
    background-color: #dbebe3;
    color: #565c63;
    display: flex;
    cursor: text;
    transition: 0.3s ease-in-out;
  }
  .field_errors p {
    color: #ff0000;
    font-size: 16px;
  }

  .submit_item {
    padding: 20px 0 0;
  }
  .submit_item button {
    font-size: 23px;
    background-color: #2373b4;
    color: #c7dff3;
    border: 2px solid #2373b4;
    border-radius: 0;
    padding: 10px 9px;
    transition: 0.3s ease-in-out;
  }
  .submit_item button:hover {
    background-color: #bdf8db;
    border: 2px solid #76d3a6;
    color: #2373b4;
    padding: 10px 8px 10px 17px;
  }
}
@media only screen and (min-width: 600px) {
  #contactsForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .field_basket {
    width: 47%;
  }
  #loginCommentsUsers .field_basket {
    width: 100%;
  }
  .field_basket.email {
    width: 60%;
  }
  .field_basket.textarea {
    width: 100%;
  }
  .field_errors p {
    font-size: 17px;
  }
}
@media only screen and (min-width: 800px) {
  .field_basket.email {
    width: 47%;
  }
}
