/* Wrapper um Input */
.password-wrapper {
    position: relative;
    display: inline-block; /* verhindert Zeilenumbruch */
}

/* Toggle Icon */
.password-wrapper .toggle-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    opacity: 0.6;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #f0f0f0;
    transition: opacity 0.2s, background 0.2s;
}

.password-wrapper .toggle-icon:hover {
    opacity: 1;
    background: #e0e0e0;
}

