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

.password-input-wrap > input {
  padding-right: 48px;
}

.password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #526b64;
  box-shadow: none;
  cursor: pointer;
}

.password-visibility-toggle:hover {
  background: #edf3f0;
  color: #174e40;
  transform: translateY(-50%);
}

.password-visibility-toggle:focus-visible {
  outline: 3px solid rgba(27, 133, 102, 0.2);
}

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