* {
  padding: 0;
  margin: 0;
}

.form-div {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
  padding: 60px 30px;
}

@media (max-width: 575px) {
  .form-div {
    padding: 40px 25px;
  }
}

.form-div > div {
  text-align: left;
  margin-bottom: 15px;
}

.form-div > div > div > label {
  color: #242930;
}

.form-div > div > div > span {
  color: #e72a28;
}

.form-div > div > input, textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bebebe;
  height: 40px;
  border-radius: 0px;
}

.form-div > div > textarea {
  border: none;
  border-bottom: 1px solid #bebebe;
  height: 80px;
  border-radius: 0px;
}

.form-div > div > input:focus, textarea:focus {
  outline: none;
}

.form-div > .full {
  width: 100%;
}

.form-div > .submit {
  width: 100%;
  margin-top: 35px;
}

.form-div > .submit > button {
  width: 100%;
  border: none;
  color: white;
  background-color: #e72a28;
  height: 60px;
  /*border-radius: 18px;*/
  margin-right: 15px;
  padding: 6px 30px;
}

.form-div > .half {
  width: 49%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.inputs > div > input, textarea, select {
  display: block;
  margin-bottom: 0px;
  width: 100%;
  height: 40px;
  border: none;
  padding-left: 15px;
  background-color: initial;
}

.inputs > div > textarea#message {
  border: none !important;
  border-bottom: 1px solid red;
  padding-left: 15px;
}

.inputs > div > input:focus, textarea:focus, select:focus {
  outline: none;
}

