.password-input-shell {
  position: relative;
  display: block;
  min-width: 0;
}

.password-input-shell > input {
  padding-inline-end: 50px !important;
}

.password-visibility-toggle {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 3px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #667085;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
}

.password-visibility-toggle:hover {
  background: #eef2f6;
  color: #155dde;
}

.password-visibility-toggle:focus-visible {
  outline: 2px solid #155dde;
  outline-offset: -2px;
}

.password-visibility-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-visibility-toggle .password-eye-slash {
  display: none;
}

.password-visibility-toggle[aria-pressed="true"] .password-eye-slash {
  display: block;
}

@media (forced-colors: active) {
  .password-visibility-toggle {
    border-color: ButtonText;
  }
}
