.textboxHideBox:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 50px;
    z-index: 9;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 100%,rgba(185,229,235,1) 100%);
}

/* Safari 隱藏密碼顯示/隱藏按鈕 */
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-clear-button,
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-calendar-picker-indicator {
    display: none !important;
}

/* Edge / IE */
input[type="password"]::-ms-reveal {
    display: none;
}

.password-wrapper {
    position: relative;
}

    .password-wrapper .toggle-password {
        padding-right: 7px;
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 10; /* 蓋在原生眼睛上 */
    }
