﻿
.neon-gradient {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    border: none;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-glow {
    transition: all 0.3s ease;
}

    .input-glow:focus {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
        transform: translateY(-2px);
        border-color: #6f42c1;
    }

.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-hover::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-hover:hover::before {
        left: 100%;
    }

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hover-text-dark:hover {
    color: #343a40;
}

.hover-text-primary-dark:hover {
    color: #0056b3;
}


