@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-y: hidden;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

#main-login {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0%;
}

#left-login {
    width: 70%;
    max-width: 1080px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}


#right-login {
    width: 60%;
    max-width: 1080px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#card-login {
    width: 60%;
    max-width: 1080px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px 35px;
    background: rgba(192, 192, 192, 0.22);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15.5px);
    border-radius: 15px;
}

#card-login h1 {
    color: #3A6FF9;
    margin: 0;
    font-size: x-large;
    padding: 10px;
}

#msgError {

    text-align: center;
    color: #ff0000;
    background-color: #ffbbbb;
    padding: 10px;
    border-radius: 4px;
    display: none;

}

#msgSucess {

    text-align: center;
    color: #00bb00;
    background-color: #bbffbe;
    padding: 10px;
    border-radius: 4px;
    display: none;

}


#text-field {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 30px 0px;
}

#text-field input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #dbdada;
    color: black;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
}

#text-field label {
    color: black;
    margin-bottom: 10px;
}

#btn {
    width: 100%;
    padding: 16px 0px;
    border: none;
    outline: none;
    border-radius: 8px;
    font-weight: 800px;
    text-transform: uppercase;
    background: #94b2fd;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

#btn:hover {
    background: #3A6FF9;
}



#bkg-animated img {
    width: 100vw;
    height: 100vh;
    position: absolute;
}




.context {
    width: 100%;
    position: absolute;
    top: 50vh;

}

.context h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
}

.area {
    z-index: 0;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #0061b3;
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }


}


@media (max-width: 768px) {
    #main-login {
        flex-direction: column;
        text-align: center;
    }

    #card-login {
        position: absolute;
        bottom: 60px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 200px;
        left: 38%;
    }


}

@media (max-width: 630px) {
    #main-login {
        flex-direction: column;
        text-align: center;
    }

    #card-login {
        position: absolute;
        bottom: 60px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 200px;
        left: 35%;
    }


}

@media (max-width: 515px) {
    #main-login {
        flex-direction: column;
        text-align: center;
    }

    #card-login {
        position: absolute;
        bottom: 70px;
    }

    #right-login h1 {
        font-size: medium;
    }

    #right-login label {
        font-size: small;
    }

    #right-login input {
        font-size: xx-small;
    }

    #left-login {
        position: absolute;
        bottom: 20%;
        width: 200px;
        left: 33%;
    }


}


@media (max-width: 383px) {
    #main-login {
        flex-direction: column;
        text-align: center;
    }

    #card-login {
        position: absolute;
        bottom: 70px;
    }

    #right-login h1 {
        font-size: small;
    }

    #right-login label {
        font-size: small;
    }

    #right-login input {
        font-size: xx-small;
    }

    #left-login {
        position: absolute;
        bottom: 20%;
        width: 200px;
        left: 27%;
    }


}

@media (max-width: 310px) {
    #main-login {
        flex-direction: column;
    }

    #right-login {
        width: 100vw;
        height: 40vh;
    }

    #right-login h1 {
        font-size: medium;
    }

    #right-login label {
        font-size: small;
    }

    #right-login input {
        font-size: xx-small;
    }


    #card-login {
        position: absolute;
        bottom: 60px;
        width: 250px;
        height: 250px;
        bottom: 130px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 150px;
        left: 28%;
    }


}

@media (max-width: 263px) {
    #main-login {
        flex-direction: column;
    }

    #right-login {
        width: 70vw;
        height: 30vh;

    }

    #right-login h1 {
        font-size: small;
    }

    #right-login label {
        font-size: x-small;
        padding: 2px;
    }

    #right-login input {
        font-size: xx-small;
    }

    #card-login {
        position: absolute;
        width: 220px;
        height: 250px;
        bottom: 130px;
        padding: 10px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 150px;
        left: 22%;
    }


}

@media (max-width: 232px) {
    #main-login {
        flex-direction: column;
    }

    #right-login {
        width: 70vw;
        height: 30vh;

    }

    #right-login h1 {
        font-size: small;
    }

    #right-login label {
        font-size: x-small;
        padding: 2px;
    }

    #right-login input {
        font-size: xx-small;
    }

    #card-login {
        position: absolute;
        width: 220px;
        height: 250px;
        bottom: 130px;
        right: 5px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 150px;
        left: 19%;
    }


}

@media (max-width: 229px) {
    #main-login {
        flex-direction: column;
    }

    #right-login {
        width: 70vw;
        height: 30vh;
        align-content: center;

    }

    #right-login h1 {
        font-size: small;
    }

    #right-login label {
        font-size: x-small;
        height: 20px;
    }

    #right-login input {
        font-size: xx-small;
    }

    #card-login {
        position: absolute;
        width: 200px;
        height: 220px;
        bottom: 130px;
        right: 14px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 150px;
        left: 17%;
    }


}

@media (max-width: 212px) {
    #main-login {
        flex-direction: column;
    }

    #right-login {
        width: 70vw;
        height: 30vh;
        align-content: center;
        justify-content: center;

    }

    #right-login h1 {
        font-size: small;
    }

    #right-login label {
        font-size: x-small;
        width: 100%;
        text-align: center;
    }

    #right-login input {
        font-size: xx-small;
        width: 100px;
        text-align: center;
        align-self: center;
    }

    #card-login {
        position: absolute;
        width: 200px;
        height: 220px;
        bottom: 130px;
        right: 5px;
    }

    #left-login {
        position: absolute;
        bottom: 25%;
        width: 150px;
        left: 14%;
    }


}