.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 50px;
}

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

.password-toggle:hover,
.password-toggle:focus-visible {
  outline: none;
  background: #ffffff12;
  color: #a6f5e5;
}

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

.password-toggle .eye-slash {
  display: none;
  stroke-width: 2.2;
}

.password-toggle.is-visible .eye-slash {
  display: block;
}
