:root {
    /* cores */
    --primary_color: #BC13FE;
    --primaryLight_color: rgba(221, 142, 255, 0.458);
    --secondary_color: #00FFFF;
    --secondaryLight_color: #0ff0fc74;
    --neutral_color: #040a1b; /* alterei achei melhor */
    --cards_color: #1A191B;
    --borderCards_color: rgb(255 255 255 / 0.05);
    --cell_color: #262627;
    --light_color: #ffffff;
    --teste: #050A18;

    --fontPrimary: "Space Grotesk", sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;

}

body {
    background-color: var(--neutral_color);
    position: relative;
    color: #ffffff;
    font-family: var(--fontPrimary);
    z-index: 2;
}

.balls {
    position: fixed;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: -1;


    & .ball {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 1;
        animation: moveBalls 10s ease infinite alternate;
    transition: transform 3s ease-in-out;
        
        &:nth-child(1) {
            background-color: #0ff0fc74;
            /* background-color: #bb13fe6f; */
            top: -220px;
            left: -220px;
            z-index: 0;
            animation-duration: 18s;

        }
        &:nth-child(2) {
            background-color: #bb13fe6f;
            /* background-color: #0ff0fc74; */
            bottom: -100px;
            right: -100px;
            z-index: 0;
            animation-duration: 25s;
        }
    }
}

@keyframes moveBalls {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(200px, -150px);
    }
    50% {
        transform: translate(-150px, 200px);
    }
    75% {
        transform: translate(300px, 100px);
    }
    100% {
        transform: translate(-200px, -100px);
    }
}

/* ======================================================================================
                                        Page LOGIN
========================================================================================*/
.login_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0.5rem;
    min-height: 100vh;
    

    .login_header {
        text-align: center;
        position: relative;

        .neon_title {
            position: absolute;
            margin: 20px auto;
            
            width: 90%;
            height: 60px;
            inset: -4px;
            background-color: rgba(221, 142, 255, 0.349);
            filter: blur(30px);
            border-radius: 60px;
            opacity: 1;
            transition: all 0.4s ease-in-out;

            &:hover {
                opacity: 1;
                transform: scale(1.2);
                filter: blur(40px);
                background-color: rgba(221, 142, 255, 0.458);

            }
        }
        
        .login_title {
            color: var(--primary_color);
            font-size: 4rem;
            z-index: 1;
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -2px;
        }
        .login_subtitle {
            color: var(--secondary_color);
            font-size: .8rem;
            font-weight: lighter;
            letter-spacing: 5px;
        }

    }
    .login_box {
        width: 85%;
        background-color: #2f34446b;
        border: 1px solid var(--borderCards_color);
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
        font-weight: lighter;
        

        .login_form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            border: none;
            font-weight: lighter;

            h2 {
                color: var(--light_color);
                font-weight: 500;
                
            }
    
            .field {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 0.2rem;
                font-size: .8rem;

                input {
                    padding: .8rem;
                    border: 1px solid var(--borderCards_color);
                    background-color: var(--cell_color);
                    color: var(--secondary_color);
                    
                }
                
                .field_password {
                    display: flex;
                    justify-content: space-between;
                    gap: 0.5rem;
    
                    a {
                        color: var(--secondary_color);
                    }
    
    
                }
            }
            .login_btn {
                font-size: 1.3rem;
                font-weight: 500;
                font-family: var(--fontPrimary) ;
                height: 4rem;
                margin-top: 1rem;
                background-color: var(--secondary_color);
                border: none;
            }
        }
        
        .login_footer {
            margin-top: 2rem;
            width: 100%;
            .divisor {
                display: flex;
                align-items: center;
                gap: 10px;

                
                &::before, &::after {
                    content: "";
                    height: 1px;   
                    flex: 1;
                    background-color: var(--light_color)
                }

                p {
                    margin: 0;
                }
            }

            .access_gmail {
                margin-top: 1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;

                img {
                    width: 65px;
                    height: 65px;
                }
            }
        }
    }
    h4 {
        font-weight: lighter;
        
        span a {
            color: var(--primary_color);
            font-weight: 700;

        }
    }
}

/* ======================================================================================
                                    RESPONSIVE Page LOGIN
========================================================================================*/
@media (min-width: 768px) {
    .login_container {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}
/* ======================================================================================== */