body { background: rgb(14, 14, 16); }


form {
  width: 90%;
  margin: 50px auto;
  direction: rtl;
}

.feedback_input {
  color:white;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #ffffff;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  box-sizing: border-box;
  width: 100%;
  outline:0;
}

.feedback-input:focus { border:2px solid #ffffff; }

.form_message {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  width: 100%;
  background:#ffffff;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:#000000;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover {
    background:#000;
    color: #ffffff;
}

@media (min-width: 700px) {
  form {
    width: 70%;
  }
}