/* Password Eye Icon Toggle Enhancement - Using Custom SVG Icons */

/* Default state: Password hidden - show eye-off icon (eye with slash) */
.input-btn[data-type="pwd"] {
    background-image: url('../images/myhome/ico/eye-off.svg') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 20px !important;
    cursor: pointer;
}

/* When password is visible - show open eye icon */
.input-btn[data-type="pwd"].pwd-visible {
    background-image: url('../images/myhome/ico/eye.svg') !important;
}
