.password-toggle-field {
    position: relative;
    display: block;
    width: 100%;
}

.password-toggle-input {
    padding-right: 52px !important;
}

.password-toggle-button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ht-gold, #d1a750);
    cursor: pointer;
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.password-toggle-button:hover,
.password-toggle-button:focus {
    color: var(--ht-gold-strong, #f3d38a);
    opacity: 1;
}

.password-toggle-button:focus {
    outline: none;
}

.password-toggle-button svg {
    display: block;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
