* {
    font-family: 'DM Sans', sans-serif
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
}

body {
    margin: 0;
    padding: 0;
    color: #fff;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/background-e7c8109ad73d8ef013fc0d038c8c36b1.jpg") no-repeat center center/cover;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.btn-neon {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    border: 2px solid #176ac6;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 500;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-45deg);
    transition: 0.5s;
}

.btn-neon:hover {
    background: #ff4ba5;
    color: #FFFFFF;
    animation: neon-glow-hover 1.5s infinite alternate;
    border: 2px solid #ff4ba5;
}

.btn-neon:hover::before {
    left: 100%;
}

@keyframes neon-glow {
    0%, 100% {
        box-shadow: 0 0 5px #176ac6, 0 0 10px #176ac6, 0 0 20px #176ac6;
    }
    50% {
        box-shadow: 0 0 10px #176ac6, 0 0 15px #176ac6, 0 0 25px #176ac6;
    }
}

@keyframes neon-glow-hover {
    0%, 100% {
        box-shadow: 0 0 5px #ff007f, 0 0 10px #176ac6, 0 0 20px #ff007f;
    }
    50% {
        box-shadow: 0 0 10px #ff007f, 0 0 15px #176ac6, 0 0 25px #ff007f;
    }
}

.btn-neon {
    animation: neon-glow 1.5s infinite alternate;
    margin: 0 auto 0 auto;
}

.positive {
    color: #00ff00
}

.negative {
    color: #ff4848;
}

.margin-top-25 {
    margin-top: 25px !important;
}

#loader {
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

#loader > #loader-container {
    width: 250px;
}

.hidden {
    display: none;
}