/* OVERLAY (blur background) */
.quick-auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* 💎 POPOVER (70% width) */
.quick-auth-popover {
    width: 70%;
    max-width: 500px;

    background: #fff;
    border-radius: 20px;
    padding: 25px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.2);

    animation: popupFade 0.3s ease;
}

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-icon {
    font-size: 18px;
    cursor: pointer;
    color: #999;
    transition: all 0.2s ease;
}

.close-icon:hover {
    color: #ff671f; /* Zmorda orange 🔥 */
    transform: scale(1.1);
}

/* ✨ Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .quick-auth-popover {
        width: 90%;
        border-radius: 15px;
    }
}