:root{

    --cyan: #30d2e4;
    --darkblue: rgb(18, 38, 102);
    --blackblue: rgb(6, 11, 31);
    --lightblue: rgb(87, 119, 223);
    --darkblue_60: rgba(18, 38, 102, 0.616);
    --darkblue_30: rgba(18, 38, 102, 0.316);
    --darkblue_10: rgb(10, 23, 66);
    --gray: rgb(131, 131, 131);
    --white-blue: #f1f3ff;
    --white: #fff;
    
    --ff-zendots:  "Zen Dots", sans-serif;
    --ff-roboto:  "Roboto", sans-serif;
}
    
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track{
    background-color: var(--darkblue);
    width: 5px;
}

::-webkit-scrollbar-thumb{
    background-color: var(--lightblue);
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 94vh;
    widows: 100%;
    background-color: white;
    transition: .7s;

    button{
        background-color: inherit;
        border: none;
        color: black;
        font-size: 19px;

        span{
            color: var(--darkblue);
            font-weight: bold;
            font-size: 20px;
            cursor: pointer;

            &:hover{
                color: var(--lightblue);
            }
        }
    }

}

#backBtn{
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.left-side{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.right-side{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(225,237,255);
    background: linear-gradient(90deg, rgba(225,237,255,1) 0%, rgb(173, 187, 255) 58%, rgb(96, 117, 255) 100%);
}

#login, #cadastro, #codConfirm{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    border-radius: 20px;
    font-family: var(--ff-roboto);
    width: 100%;
    height: 90%;
    border-radius: 20px;

    h1{
        font-size: 50px;
    }

    p{
        font-size: 20px;
    }

    form{
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        gap: 8px;
        width: 90%;
        align-items: center;
        justify-content: center;

        input{
            border: 1px solid var(--gray);
            border-radius: 10px;
            padding: 10px;
            outline: none;
            width: 70%;
        }

        button{
            background-color: var(--darkblue_10);
            color: white;
            border: none;
            padding: 10px;
            width: 70%;
            transition: 0.7s;
            cursor: pointer;

            &:hover{
                background-color: var(--lightblue);
            }
        }

    }
}

#cadastro, #codConfirm{
    display: none;
}

@media screen and (max-width: 768px) {
    
    body{
        scroll-behavior: none;
    }
    
    .container{
        height: 80vh;
    }
    
    .right-side{
        display: none;
    }
    .left-side{
        width: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        height: 100%;
        padding: 0;
    }
}