/* Canonical password visibility control shared by admin, customer and auth. */
.gv-password-field{
  position:relative;
  display:flex;
  align-items:center;
  width:100%;
  min-width:0;
}
.gv-password-field>input{
  width:100%;
  min-width:0;
  padding-inline-end:42px;
}
.gv-password-eye{
  position:absolute;
  z-index:2;
  inset-inline-end:12px;
  top:50%;
  width:18px;
  min-width:18px;
  height:18px;
  min-height:18px;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-50%);
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:var(--gv-password-eye-color,var(--gv-text-muted,#71717a));
  line-height:0;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
}
.gv-password-eye:hover{color:var(--gv-password-eye-hover,var(--gv-text,#18181b));background:transparent}
.gv-password-eye:active{opacity:.72}
.gv-password-eye:focus-visible{outline:2px solid currentColor;outline-offset:3px;border-radius:3px}
.gv-password-eye svg{
  display:block;
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  pointer-events:none;
}
