/* ------------------------------ forms ----------------------------- */
input {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
input[type='text'], input[type='number'], input[type='search'], input[type='password'], input[type='email'] {
  background: #fff;
  border: 1px solid #c4c3c3;
  margin: 0 0 5px 0;
  height: 34px;
  line-height: 34px;
  text-indent: 10px;
  *text-indent: 0;
  color: #333;
  font-size: 14px;
  box-shadow: inset 0 3px 4px #c4c3c3;
  -o-box-shadow: inset 0 3px 4px #c4c3c3;
  -moz-box-shadow: inset 0 3px 4px #c4c3c3;
  -webkit-box-shadow: inset 0 3px 4px #c4c3c3;
  -ms-box-shadow: inset 0 3px 4px #c4c3c3;
  border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
}
input[type='text']:focus, input[type='number']:focus, input[type='search']:focus, input[type='password']:focus, input[type='email']:focus {
  border-color: #999;
}
input[type='text'].error, input[type='number'].error, input[type='search'].error, input[type='password'].error, input[type='email'].error {
  background: #f5bea3;
}
input[type='submit'], input[type='button'] {
  cursor: pointer;
}

textarea {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #c4c3c3;
  margin: 0 0 5px 0 !important;
  resize: vertical;
  color: #333;
  font-size: 14px;
  max-width: 100%;
  padding: 10px;
}
textarea:focus {
  border-color: #999;
}

.full-forms input[type='text'], .full-forms input[type='number'], .full-forms input[type='search'], .full-forms input[type='password'], .full-forms input[type='email'] {
  width: 99.1%;
  margin: 0;
}
.full-forms textarea {
  width: 96.2%;
  min-height: 85px;
  margin: 0;
}

.error-text {
  color: #e55c19;
  font-size: 11px;
  overflow: hidden;
  line-height: 14px;
}

/* ------------------------ submits and buttons ----------------------- */
a.submit-1, a.submit-2, div.submit-1, div.submit-2 {
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-decoration: none !important;
}

a.submit-1, div.submit-1 {
  line-height: 27px;
}

a.submit-2, div.submit-2 {
  line-height: 48px;
  text-align: center;
}
