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

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

.tw-password-toggle {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 4px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #667085;
    cursor: pointer;
    box-shadow: none !important;
    transform: translateY(-50%);
}

.tw-password-toggle:hover {
    background: rgba(255, 90, 0, 0.08) !important;
    color: #e94f00;
}

.tw-password-toggle:focus-visible {
    outline: 3px solid rgba(255, 90, 0, 0.22) !important;
    outline-offset: 1px;
}

.tw-password-toggle svg {
    width: 19px;
    height: 19px;
    pointer-events: none;
    stroke: currentColor;
}

.tw-password-toggle .tw-eye-closed,
.tw-password-toggle.is-visible .tw-eye-open {
    display: none;
}

.tw-password-toggle.is-visible .tw-eye-closed {
    display: block;
}

.tw-password-field > input:disabled + .tw-password-toggle {
    opacity: 0.45;
    cursor: not-allowed;
}
