.password-input-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.password-input-wrap .password-input {
  padding-right: 52px !important;
}

.password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 4px;
  z-index: 2;
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #292929;
  cursor: pointer;
  touch-action: manipulation;
}

.password-visibility-toggle:hover {
  border-color: #ffd1ae;
  background: #fff1e7;
  color: #b64d00;
}

.password-visibility-toggle:focus-visible {
  outline: 3px solid rgba(255, 107, 0, .35);
  outline-offset: 1px;
}

.password-visibility-toggle[aria-pressed="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
}

.password-visibility-toggle:disabled {
  border-color: transparent;
  background: #eee;
  color: #999;
  cursor: not-allowed;
  opacity: .7;
}

.password-visibility-toggle svg {
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.password-input::-ms-reveal,
.password-input::-ms-clear {
  display: none;
}
