.input-base {
  border-radius: 0.25rem;
  padding: 0 0.75rem 0 0.75rem;
  position: relative;
  border: 0;
  height: 48px;
  outline: 1px solid #C1CACE;
  color: #14181B;
  display: flex;
  align-items: center;
}
.input-base .icon {
  display: flex;
}
.input-base label {
  padding: 0 0.75rem 0 0.75rem;
  color: #50626A;
  font-weight: normal;
  font-family: unset;
}
.input-base input {
  width: 100%;
  background-color: unset;
}
.input-base .form-field-captcha {
  display: block;
  width: 100%;
}
.input-base .form-field-captcha .captcha-wrapper {
  border: 0;
  top: 6px;
}
.input-base.is-disabled label {
  color: #A2AFB6;
}
.input-base.has-error {
  outline: 1px solid #EDD1CD;
  background-color: #F6E8E6;
}
.input-base.has-error label {
  color: #831503;
}
.input-base.has-error:focus-within {
  background-color: #fff;
  outline: 2px solid #F6E8E6;
}
.input-base.is-disabled {
  outline: 1px solid #A2AFB6;
  background-color: #F0F2F3;
  color: #A2AFB6;
  pointer-events: none;
}
.input-base:focus-within {
  background-color: #fff;
  outline: 2px solid #647A85;
}
.input-base label, .input-base > span {
  position: absolute;
  left: 6px;
  top: 1px;
  right: 0;
  cursor: text;
  font-size: 11px;
  text-transform: none;
  transition: all 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.input-base select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 1em;
  background-size: 8px 10px;
  width: 100%;
}
.input-base input, .input-base select, .input-base textarea {
  font-size: 0.875rem;
  padding: 17px 6px 3px 6px;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  line-height: 18px;
}
.input-base input:placeholder-shown:not(:focus) + *, .input-base select:placeholder-shown:not(:focus) + *, .input-base textarea:placeholder-shown:not(:focus) + * {
  font-size: 0.875rem;
  font-weight: normal;
  top: 16px;
  pointer-events: none;
}
.input-base input:focus, .input-base select:focus, .input-base textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.5);
}
.input-base input::placeholder, .input-base select::placeholder, .input-base textarea::placeholder {
  opacity: 1;
  transition: all 0.3s;
}
.input-base input:placeholder-shown:not(:focus)::placeholder, .input-base select:placeholder-shown:not(:focus)::placeholder, .input-base textarea:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}
.input-base.is-disabled .icon {
  color: #A2AFB6;
}
.input-base.has-error .icon {
  color: #A41A04;
}
.input-base.has-button input {
  padding: 3px 6px;
}