.custom-contact-form {
  max-width: 800px;
}

.custom-contact-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.custom-contact-form .row.full {
  flex-direction: column;
}

.custom-contact-form .field {
  width: 100%;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 40px;
  border: none;
  background: #f5f5f5;
  font-size: 14px;
  outline: none;
}

.custom-contact-form textarea {
  border-radius: 20px;
  height: 150px;
  resize: none;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #999;
}

.custom-contact-form input[type="submit"] {
  background: #5b6d3c;
  color: #fff;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  width: auto;
  padding: 15px 40px;
  transition: 0.3s;
}

.custom-contact-form input[type="submit"]:hover {
  background: #4a5a30;
}