#contactForm .form-control {
  width: 100%;
  height: 52px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  padding: 10px 12px;
  border: 0px solid #ccc;
  box-sizing: border-box;
  border-radius: 0;
  display: block;
}

#contactForm .form-control::placeholder,
#contactForm .form-control::-webkit-input-placeholder,
#contactForm .form-control:-ms-input-placeholder,
#contactForm .form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

#contactForm .form-control {
  margin-bottom: 24px;
}

#contactForm .select-with-arrow {
  position: relative;
  margin-bottom: 24px;
}

#contactForm .select-with-arrow select.form-control {
  padding-right: 36px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#contactForm .select-with-arrow::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;

  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolygon points='0,6 10,14 20,6' fill='%23000'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

#contactForm select.form-control option[disabled][hidden] {
  color: rgba(0, 0, 0, 0.2);
}

#contactForm select.form-control {
  color: #000;
}

#contactForm select.form-control:invalid {
  color: rgba(0, 0, 0, 0.2);
}

#contactForm .messages {
  margin-top: 24px;
}
