/* Visualizacao de senha da Area do Cliente - 2026-08-03 */
.account-form .password-input-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.account-form .password-input-wrap input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 112px;
}

.account-form .password-toggle {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 104px;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-left: 1px solid #D9DEEA;
    border-radius: 0 7px 7px 0;
    background: #FFFFFF;
    color: #173FBD;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
}

.account-form .password-toggle:hover {
    background: #F5F6F8;
    color: #082992;
}

.account-form .password-toggle:focus-visible {
    z-index: 1;
    outline: 3px solid rgba(23, 63, 189, .22);
    outline-offset: 1px;
}

.account-form .password-toggle svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.account-form .password-toggle.is-visible {
    color: #082992;
    background: #EEF2FF;
}

@media (max-width: 390px) {
    .account-form .password-input-wrap input {
        padding-right: 52px;
    }

    .account-form .password-toggle {
        min-width: 48px;
        width: 48px;
        padding: 0;
    }

    .account-form .password-toggle [data-password-toggle-label] {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}
