.password-wrapper {
  position: relative;
  display: inline-block;
}

.password-toggle-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: #686868;
  mask: url("images/eye.svg") no-repeat center / contain;
  cursor: pointer;
}

.password-toggle-icon.password-visible {
  mask: url("images/eye-off.svg") no-repeat center / contain;
}
