/*
* Form styles
*/
input[type="text"],
input[type="password"],
input[type="email"] {
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  height: 60px;
  padding-left: 30px;
}

input[type="submit"] {
  background: #f36d21;
  text-transform: uppercase;
  -webkit-transition: background 0.5s ease-in-out;
          transition: background 0.5s ease-in-out;
}

input[type="submit"]:hover {
  background: #58B7B3;
}

textarea {
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  height: 150px;
  padding: 20px 30px;
  resize: none;
  width: 100%;
}

select {
  -webkit-appearance: none;
  background-color: #fafafa;
  background-image: url("data:image/svg+xml;base64, PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: center right 3%;
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 14px;
  border-radius: 0;
  width: 100%;
}

.form-row {
  width: 100%;
}

.form-separator {
  display: inline-block;
  margin: 20px 0 30px 0;
  width: 100%;
}

.form-separator label {
  display: inline-block;
  font-size: 16px;
  width: 100%;
}

.input-wrapper {
  margin-bottom: 15px;
  padding-right: 30px;
}

.input-wrapper.half {
  float: left;
  width: 50%;
}

.input-wrapper.half:first-child {
  padding-right: 2%;
}

.input-wrapper.half:last-child {
  padding-left: 2%;
}

.input-wrapper:last-child {
  padding-right: 0;
}

.input-wrapper input {
  width: 100%;
}

/*# sourceMappingURL=../css/forms.css.map */