/* Remove browser validation icons */
input[type="password"]::-webkit-validation-bubble-message,
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-outer-spin-button {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
}

input.is-invalid {
   background-image: none !important; /* Remove the red exclamation icon */
}

.alert-danger .errorlist {
   margin: 0;
}

/* Position eye icon consistently */
.password-toggle-icon {
   position: absolute;
   top: 34px;
   right: 12px;
   color: #999;
   z-index: 2;
   cursor: pointer;
}

.password-toggle-icon:hover {
   color: #333;
}
  
  