.form {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.form .title {
  font-size: 150%;
  font-weight: 500;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.form .formControl {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 0.8em;
  z-index: 0;
}
.form .formControl > label {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 0.8em;
  z-index: 0;
  font-size: 100%;
  margin-left: 5px;
  flex-direction: row;
}
.form .formControl.form10w {
  width: 10%;
}
.form .formControl.form10w {
  width: 10%;
}
.form .formControl.form10w {
  width: 10%;
}
.form .formControl.form15w {
  width: 15%;
}
.form .formControl.form20w {
  width: 20%;
}
.form .formControl.form25w {
  width: 25%;
}
.form .formControl.form30w {
  width: 30%;
}
.form .formControl.form35w {
  width: 35%;
}
.form .formControl.form40w {
  width: 40%;
}
.form .formControl.form45w {
  width: 45%;
}
.form .formControl.form50w {
  width: 50%;
}
.form .formControl.form55w {
  width: 55%;
}
.form .formControl.form60w {
  width: 60%;
}
.form .formControl.form65w {
  width: 65%;
}
.form .formControl.form70w {
  width: 70%;
}
.form .formControl.form75w {
  width: 75%;
}
.form .formControl.form80w {
  width: 80%;
}
.form .formControl.form85w {
  width: 85%;
}
.form .formControl.form90w {
  width: 90%;
}
.form .formControl.form95w {
  width: 95%;
}
.form .formControl.form100w {
  width: 100%;
}
.form .formControl.formControlNoMargin {
  margin-bottom: 0;
}
.form .formControl.formFlex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.form .formControl.formFlexCenter {
  justify-content: center;
}
.form .formControl.formFlexRight {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.form .formControl.formBottom {
  align-items: flex-start;
  gap: 0;
  margin-bottom: 10px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.form .formControl.formBottom button {
  padding: 7px 22px;
}
.form .formControl .formInput {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  padding: 10px 15px;
  display: flex;
  z-index: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 400;
  border-radius: 7px;
  font-size: 107%;
  transform: all ease 0.2s;
  margin-left: 1px;
  margin-right: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 24px;
  position: relative;
  outline: 0;
  border: 2px solid rgb(221 221 231);
}
.form .formControl .formInput:visited,
.form .formControl .formInput:active {
  outline: 0;
}
.form .formControl .formInput option {
  font-size: 107%;
  color: #6b6a6a;
}
.form .formControl .formInput.error {
  border-color: #f44336;
  transform: all ease 0.2s;
}
.form .formControl .formInput:focus {
  transform: all ease 0.2s;
  border-color: #1572dd;
}
.form .formControl .formInput.disabled {
  background: var(--color-gray-2) !important;
  color: var(--color-gray-1) !important;
  cursor: not-allowed;
}
.form .formControl .formSelect {
  margin-right: 7px;
  position: relative;
}
.form .formControl .formSelect:last-child {
  margin-right: 0;
}
.form .formControl .formSelect::before {
  content: "\e925";
  font-family: font-brave;
  z-index: 1;
  position: absolute;
  top: 25%;
  right: 7%;
  font-size: 90%;
  pointer-events: none;
}
.form .formControlLine {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 0;
}
.form .formControlLine:last-child {
  margin-right: 0;
}
.form .formRadio {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.form .formRadio:last-child {
  margin-right: 0;
}
.form .formRadio input[type="radio"] {
  margin: 0 7px;
  align-items: center;
  width: 18px;
  height: 18px;
}
.form .formDividerOr {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  margin: 0.5em 0;
  position: relative;
  color: #d1d1d1;
}
.form .formDividerOr::before {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background: #d1d1d1;
  margin-right: 0.5em;
  position: absolute;
  left: 10px;
}
.form .formDividerOr::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background: #d1d1d1;
  margin-left: 0.5em;
  position: absolute;
  right: 10px;
}
