form {
  margin: 0;
}
.checkbox {
  padding-left: 34px;
  overflow: hidden;
}
.checkbox label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  margin-left: -34px;
  margin-top: -11px;
  border: 1px solid #a7a1a1;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.15s ease-in-out;
}
.checkbox.dos {
  padding-left: 0;
}
.checkbox.dos label {
  padding-top: 45px;
}
.checkbox.dos label::before {
  width: 30px;
  margin: 0;
  margin-left: -15px;
  height: 30px;
  left: 50%;
  top: 0;
}
.checkbox.dos input[type="checkbox"]:checked + label::before,
.checkbox.dos input[type="radio"]:checked + label::before {
  border-width: 15px;
}
.checkbox.tres {
  padding: 0;
}
.checkbox.tres label {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 15px 15px 15px 60px;
  display: block;
  width: 100%;
  transition: all 0.15s ease-in-out;
}
.checkbox.tres label::before {
  border-color: #e5e5e5;
  margin: 0;
  left: 20px;
  transform: translateY(-50%);
}
.checkbox.tres input:checked + label {
  border-color: #ff7900;
}

.checkbox.tres input:checked + label::before {
  border-width: 5px !important;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox input[type="checkbox"]:checked + label::before,
.checkbox input[type="radio"]:checked + label::before {
  background: #fff;
  border-color: #ff7900;
  border-width: 10px;
}

.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
input,
textarea {
  font: 18px/1.1em CircularStd-Book, arial;
  transition: border 0.3s ease-in-out;
}
select {
  font: 16px/1.2em CircularStd-Book, arial;
}
input:focus {
  border-color: #c3c3c3;
}
/* select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  font-size: 16px !important;
} */

textarea {
  min-height: 160px;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  resize: vertical;
}
.form-control {
  background: none;
  color: #848484;
  border: 0 none;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  display: block;
  font: 18px/1.2em CircularStd-Book, arial;
  padding: 15px 10px 6px;
}
.select {
  position: relative;
}
.select select,
.form-control-2 {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 17px 20px;
}
.select select {
  display: block;
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
select.form-control {
  padding-left: 0px !important;
  padding-top: 5px;
}
.select,
.select * {
  cursor: pointer;
}
.retorno-error.le {
  text-align: center;
}
.select:before {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  top: 15px;
  right: 15px;
  position: absolute;
  font-weight: 900;
  color: #ff7900;
  z-index: 3;
  opacity: 0.5;
  transition: 0.2s ease-in-out;
}
.select:hover:before {
  opacity: 1;
}
.form-error,
.alert.alert-danger {
  background: #f56767;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  padding: 2px 7px;
  border-radius: 16px;
}
.pass .fas {
  position: absolute;
  z-index: 2;
  top: 18px;
  color: #dcdcdc;
  right: 15px;
  cursor: pointer;
}
fieldset {
  border: 0 none;
  margin: 0;
  padding: 0;
}
.form-control-3 {
  border-bottom: 1px solid #eaeaea;
  font: 18px/1.2em CircularStd-Book, arial;
  position: relative;
}
.form-control-3 > div {
  display: block;
  overflow: hidden;
  position: relative;
  top: 1px;
}
.form-control-3.disabled {
  opacity: 1 !important;
}
.form-control-3.disabled input {
  cursor: not-allowed;
}
.form-control-3 > div:before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 1px solid #ff7900;
  bottom: 0;
  left: 0;
  z-index: 3;
  position: absolute;
  transition: width 0.8s ease;
}
.form-control-3:not(.readonly) > div:focus-within:before {
  width: 100%;
}
.form-control-3 input {
  color: #000;
  border: none;
  width: 100%;
  padding: 15px 0px 15px;
  position: relative;
  top: -1px;
}
.form-control-3 input:focus {
}
.form-control-3 label {
  color: #9b9b9b;
  min-width: 150px;
  float: left;
  padding: 15px 10px 6px;
}
