.form-group {
  position: relative;
}
.form-genericos .form-control {
  border: 1px solid #d2d8dd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 13px !important;
  height: 38px;
  box-shadow: none;
  color: #495057;
}
.form-genericos textarea.form-control {
  height: auto;
  resize: none;
}
.form-genericos .form-control:focus {
  border: 1px solid rgb(243,112,33);
  box-shadow: none;
}
.form-genericos .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color:#495057 !important;
  font-size: 13px !important;
}
.form-genericos .form-control::-moz-placeholder { /* Firefox 19+ */
  color:#495057 !important;
  font-size: 13px !important;
}
.form-genericos .form-control:-ms-input-placeholder { /* IE 10+ */
  color:#495057 !important;
  font-size: 13px !important;
}
.form-genericos .form-control:-moz-placeholder { /* Firefox 18- */
  color:#495057 !important;
  font-size: 13px !important;
}
.form-genericos .form-control.error {
  border: 1px solid #e34f4f;
}
.form-group label.error {
  color: #e34f4f;
  font-size: 12px;
  font-family: 'AzoSans-Regular';
  font-weight: 400;
  margin: 0;
  display: block;
  padding: 5px 0 0 5px;
  /* -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: -20px;
  right: -15px;
  z-index: 2;
  height: 25px;
  line-height: 1;
  background-color: #e34f4f;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px; */
}
/* .form-group label.error:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #e34f4f;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
} */
button.backward, button.forward, button.submit {
  border: none;
  color: #fff;
  text-decoration: none;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-align: center;
  background-color: rgb(243,112,33);
  position: relative;
  font-size: 14px;
  font-weight: 400;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  padding: 15px 30px 12px;
  text-transform: uppercase;
}
button.backward {
  color: #777;
  background-color: #e8e8e8;
}
.backward:hover, .forward:hover {
  background-color: rgba(243,112,33,.8);
  color: #fff;
}