input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="text"]::-ms-reveal,
input[type="text"]::-ms-clear {
    display: none !important;
}

.pwd-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.pwd-input-wrap input {
    width: 100%;
}
.pwd-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}
.pwd-input-wrap.pwd-focused .pwd-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.pwd-toggle:hover { color: #333; }
.pwd-toggle svg { width: 20px; height: 20px; flex-shrink: 0; }
