.password-input-wrap {
  position: relative;
  width: 100%;
}

.password-input-wrap > input {
  width: 100%;
  padding-right: 3rem !important;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  display: inline-grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.72;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  opacity: 1;
  background: color-mix(in srgb, currentColor 10%, transparent);
}

.password-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.password-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
