body {
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: top left;
    background-attachment: fixed;
    background-image: url(../../assets/img/ncms_bg_2.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    overflow: hidden;
    z-index: 0;
}

.container {
    background-color: #f2f2f2f2;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    z-index: 3;
    overflow: hidden;
}

h1 {
    color: #333333;
    font-size: 24px;
    margin-bottom: 20px;
}

a.button {
    display: inline-block;
    background-color: #5865F2;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

a.button:hover {
    background-color: #7289DA;
}

#loader {
    position: absolute;
    display: flex;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    background-image: url(../../assets/img/ncms_square.svg);
    background-repeat: no-repeat;
    background-position: top left;
    background-attachment: fixed;
    -webkit-animation: spin 1.5s ease infinite;
    animation: spin 1.5s ease infinite;
    overflow: hidden;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(10deg);
    }

    100% {
        -webkit-transform: rotate(-720deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.animate-pop-in {
    position: relative;
    -webkit-animation-name: animatepopin;
    -webkit-animation-duration: 1s;
    animation-name: animatepopin;
    animation-duration: 1s
}

@-webkit-keyframes animatepopin {
    from {
        scale: .5;
        opacity: 0
    }

    to {
        scale: 1;
        opacity: 1
    }
}

@keyframes animatepopin {
    from {
        scale: .5;
        opacity: 0
    }

    to {
        scale: 1;
        opacity: 1
    }
}

.load-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    transition: opacity 1s ease;
    z-index: 1;
    overflow: hidden;
}