
.neon-chat-btn{
    display:inline-block;
    padding:18px 45px;
    font-family:Arial,sans-serif;
    font-size:24px;
    font-weight:800;
    text-decoration:none;
    color:#fff !important;

    background:linear-gradient(
        135deg,
        #ff00cc,
        #c026ff,
        #7b2cff
    );

    border-radius:60px;

    box-shadow:
        0 0 10px #ff00cc,
        0 0 20px #ff00cc,
        0 0 40px #c026ff,
        0 0 60px #7b2cff;

    transition:all .3s ease;
}

.neon-chat-btn:hover{
    transform:translateY(-3px) scale(1.05);

    box-shadow:
        0 0 15px #ff00cc,
        0 0 30px #ff00cc,
        0 0 60px #c026ff,
        0 0 90px #7b2cff;
}

.neon-chat-btn:active{
    transform:scale(.98);
}
