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

.password-toggle-control > input {
    width: 100%;
    padding-right: 48px !important;
}

.password-toggle-button {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color .18s ease, color .18s ease;
}

.password-toggle-button:hover,
.password-toggle-button:focus-visible {
    background: rgba(15, 23, 42, .08);
    color: #0f172a;
    outline: none;
}

.password-toggle-button i {
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}

.dark .password-toggle-button,
[data-theme="dark"] .password-toggle-button {
    color: #cbd5e1;
}

.dark .password-toggle-button:hover,
.dark .password-toggle-button:focus-visible,
[data-theme="dark"] .password-toggle-button:hover,
[data-theme="dark"] .password-toggle-button:focus-visible {
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}
