
/* Media Queries */

#check-sleep {
    display: none;
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    animation: throwMotion .2s ease-in-out forwards;
}


#check-done {
    display: none;
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    animation: throwMotion .2s ease-in-out forwards;
}

    @keyframes throwMotion {
        0% {
            opacity: 0;
            transform: scale(0);
        }
        90% {
            opacity: 1;
            transform: scale(1.1);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

#login-sleep{
    visibility: hidden;
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
    border: solid 15px #f8f9fad1;
    border-radius: 30px;
    width: 260px;
    height: 260px;
    background-color: #612222c2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 90px;
    color: #fff;
}


#login-done{
    visibility: hidden;
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
    border: solid 15px #f8f9fad1;
    border-radius: 30px;
    width: 260px;
    height: 260px;
    background-color: #28a745cf;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 90px;
    color: #fff;
}
#qr-code-line{
    height: 260px;
    width: 260px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*box-shadow: 0 20px 35px rgba(0,0,0,0.3);*/
    border-radius: 30px;
    overflow: hidden;
}
#qr-code-line:before{
    content: "";
    background-image: conic-gradient(
        #e74336 20deg,
        transparent 120deg
    );
    height: 150%;
    width: 150%;
    position: absolute;
    left: -25%;
    top: -25%;
    animation: rotate 5s infinite linear;
}
@keyframes rotate{
    100%{
        transform: rotate(-360deg);
    }
}
#qr-code-line:after{
    /*content: "AWESOME";*/
    /*height: 94%;*/
    /*width: 94%;*/
    /*position: absolute;*/
    /*background-color: #1c1b29;*/
    /*border-radius: 5px;*/
    /*top: 3%;*/
    /*left: 3%;*/
    /*color: #04b0ee;*/
    /*display: grid;*/
    /*place-items: center;*/
    /*font-size: 20px;*/
    /*letter-spacing: 6px;*/
}




.login-page{
    background-image: url(https://management.create-nation.com/assets/cnm-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.login-main-box {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-right: 30%;
    min-height: 360px;
}


.login-box, .register-box{
    width: 80vw !important;
    margin-top: 40px!important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}


.qr-login-card{
    width: 35%;
    height: 100%;
    border-top-right-radius: 25px !important;
    /*border-top-right-radius: 25px !important;*/
}

.normal-login-card{
    width: 35%;
    height: 100%;
    border-bottom-left-radius: 25px !important;
    border-top-left-radius: 25px !important;
}

#qrcode {
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
    border: solid 15px #f8f9fad1;
    border-radius: 30px;
    width: 260px;
    height: 260px;
}

#code-container{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#qrcode img{
    border-radius: 15px;
}

.qr-login-card .card-body{
    border-top-right-radius: 25px !important;
    /*border-top-right-radius: 25px !important;*/
    /*border-right: solid 5px #e64236;*/
}

.normal-login-card .card-body{
    border-bottom-left-radius: 25px !important;
    border-top-left-radius: 25px !important;
    border-left: solid 5px #e64236;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    padding-top: 70px;
    padding-bottom: 20px;
}







