* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #5100d4, #000000);
    color: white;
    overflow: hidden;
}


body {
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #5a189a);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0.8;
    transition: transform 0.2s ease-out;
    animation: flicker 5s infinite alternate ease-in-out;
}

@keyframes flicker {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(255, 255, 255, 1);
    }
}



.logo:hover img {
    transform: scale(1.1);
}


.logo img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: auto;
    cursor: pointer;
}


.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 400px;
    text-align: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.container.login #register {
    display: none;
}

.container:not(.login) #login {
    display: none;
}

.notf {
    margin-bottom: 20px;
}

.notf h2 {
    font-size: 28px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
}

.text {
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
}

.text::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.button {
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: #2575fc;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:hover {
    background: #6a11cb;
}

#remember-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

#remember-container label {
    margin-left: 10px;
    font-size: 14px;
}


.background-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    animation: glow 1.5s infinite alternate;
    z-index: 1;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #9900ff65, 0 0 20px #9900ff65(255, 255, 255, 0.6), 0 0 30px #9900ff65(255, 255, 255, 0.4);
    }

    to {
        text-shadow: 0 0 20px #9900ff65(255, 255, 255, 1), 0 0 30px #9900ff65(255, 255, 255, 0.8), 0 0 40px #9900ff65(255, 255, 255, 0.6);
    }
}









.social {
    background: rgba(0, 0, 0, 0.45);
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    padding: 8px;
    border-radius: 30px;
    height: auto;
    width: 60px;
    text-align: center;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social {
    padding-top: 25px;
}



.backtotop {
    position: fixed;
    width: 60px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    text-align: center;
    justify-content: center;
    color: #00a6ff;
    z-index: 999;
    font-size: 55px;
}

.backtotop a i {
    color: #5500ff;
}

.backtotop i {
    transition: 0.5s;
}

.backtotop i:hover {
    color: #00be1a;
}

.social span {
    font-size: 19px;
    position: absolute;
    color: white;
    box-shadow: -30px 30px 50px rgba(0, 0, 0, 0.5);
    background: #3d95ff;
    padding: 6px 20px;
    border-radius: 40px;
    margin: 10px 0;
    z-index: 1;
    left: 2px;
    opacity: 0;
    transition: 0.5s ease;
}

.askmotion2 {
    width: 100%;
    display: none;
}

.social a:hover span {
    opacity: 1;
    margin-left: 80px;
}

.social a i {
    transition: 0.4s ease;
}

.social a:hover i {
    transform: scale(1.2);
}

.fa-globe {
    color: white;
}

.fa-discord {
    color: #5a7693;
}

.fa-telegram-plane {
    color: #0077ff;
}

.fa-instagram {
    color: deeppink;
}

.fa-youtube {
    color: red;
}