/* LIvVE registration password visibility control v299 */
.livve-password-control {
    position: relative;
    display: block;
    width: 100%;
}
.livve-password-control input[type="password"],
.livve-password-control input[type="text"] {
    width: 100%;
    padding-right: 64px;
}
.livve-password-toggle {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    min-width: 50px;
    height: 30px;
    margin: 0;
    padding: 0 8px;
    border: 1px solid var(--theme-accent-border, #ff91b2);
    border-radius: 4px;
    background: var(--theme-accent-soft, #fff0f5);
    color: var(--theme-accent-ink, #8c1136);
    font-size: 11px;
    font-weight: 800;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}
.livve-password-toggle:hover,
.livve-password-toggle:focus {
    background: var(--theme-accent-soft-strong, #ffdbe6);
    border-color: var(--pink, #ff1f62);
    outline: none;
}
.livve-password-toggle:focus-visible {
    box-shadow: 0 0 0 3px var(--theme-accent-shadow, rgba(255,31,98,.16));
}
