.password-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.password-wrapper input {
    width: 100%;
    height: 44px;                 /* FORCE consistency */
    padding: 10px 44px 10px 12px; /* right padding = button space */
    font-size: 16px;
    box-sizing: border-box;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);

    width: 95px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF;
    border: none;
    padding: 0;
    margin: 0;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
    opacity: 0.65;
}

.toggle-password:hover {
    opacity: 1;
    background: #52a2d8;
}

.password-help-text-hide {
        display: normal !important;
        font-size: .8em;
}
@media screen and (max-width: 480px) {
    .password-help-text-hide {
        display: normal;
    }
}

/* Chrome / Edge / Safari */
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-textfield-decoration-container {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Edge (Chromium) reveal + clear buttons */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}
