/* ทำให้คลิกได้แน่นอน และอยู่เหนือชั้นอื่น */
#verifyEntry .pwON {
    position: relative;
}

#verifyEntry .pwON input {
    padding-right: 40px;
}

#verifyEntry .pwON .icon_pw {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    cursor: pointer;
    opacity: .95;
    background: no-repeat center/20px 20px;
    z-index: 5;
    /* กันโดนทับ */
    pointer-events: auto;
    /* กันธีมเดิมปิดคลิก */
    touch-action: manipulation;
    /* ลื่นบนมือถือ */
    /* เริ่มต้น = ซ่อนรหัส (ตาปิด) */
    background-image: url("https://www.vtmh325.net/Areas/Mobile/Content/Images/vi-vn/icon_pwOFF.svg") !important;
}

#verifyEntry .pwON .icon_pw.on {
    /* โหมดแสดงรหัส (ตาเปิด) */
    background-image: url("https://www.vtmh325.net/Areas/Mobile/Content/Images/vi-vn/icon_pwON.svg") !important;
}

/* เผื่อธีมเดิมมี .off ไปปิดการคลิก */
#verifyEntry .pwON.off .icon_pw {
    pointer-events: auto;
    opacity: .95;
}