  .password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.toggle-password img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
  
  .toggle-password:hover {
    opacity: 0.7;
  }
  
  /* Hide Edge/IE password reveal button */
::-ms-reveal {
  display: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}
