/* ===== PASSWORD SUGGESTION BUTTON ===== */
.password-suggest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    padding: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(14, 165, 233, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: #8b5cf6;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.password-suggest-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(14, 165, 233, 0.25));
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.password-suggest-btn:active {
    transform: scale(0.95);
}

.password-suggest-btn i {
    animation: magicSparkle 2s ease-in-out infinite;
}

@keyframes magicSparkle {

    0%,
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }

    50% {
        opacity: 0.7;
        transform: rotate(180deg);
    }
}

.password-suggest-btn:hover i {
    animation: magicSparkle 0.6s ease-in-out infinite;
}