#floating-login-box {
    position: fixed;
    right: 12px;
    bottom: 80px;
    z-index: 9999;
    display: flex;
}

.login-box-inner {
    position: relative;
    background: linear-gradient(90deg, #6754bd, #8b5cf6);
    border-radius: 14px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    max-width: 340px;
    display: flex;
    padding: 12px;
    align-items: center;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-box-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

.login-box-logo img {
    width: 36px;
    height: 36px;
}

.login-text-title {
    font-size: 15px;
    color: white;
    font-weight: bold;
}

.login-text-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.95);
}

.login-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d2d2d;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    z-index: 200;         
    pointer-events: auto; 
}

.login-close-btn:hover {
    background: #1a1a1a;
}
.login-close-btn svg {
    display: block;
}

