

.cardLoginv1{
    padding: 20px;
    margin-left: 18px;
    width: 90%;
    box-shadow: 0px 5px 6px rgb(0 0 0 / 10%);
}




.cardLogin{
    padding: 20px;
    width: 350px;
    align-items: center;
    box-shadow: 0px 5px 6px rgb(0 0 0 / 10%);
}

.contenImgLogo{
    padding-left: 40%;
    align-items: center;   
    height: 100px;
}

.divName{
    text-align: center;
    padding: 10px;
}



.wrapperCube  {
    position: absolute;
}

.cube{
    position: relative;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    transform-style: preserve-3d;
    animation: animate 4s linear infinite;
}

.cube div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.cube div span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#001600 0%, #ac3fc7 50%, #7c3a97 100%);
    transform: rotateY(calc(90deg * var(--i))) translateZ(20px);

    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}


.cube div span h2{
    position: absolute;
    font-size: 1em;
    color: #fff;
    transform: translateZ(10px);
}

.cube div span h2:nth-child(1){
    transform: translateZ(0) translateY(7px);
    color: rgba(0,0,0,0.1);
    filter: blur(2px);
}

@keyframes animate{
    0%{
        transform: rotateX(-30deg) rotateY(0deg);
    }
    100%{
        transform: rotateX(-30deg) rotateY(360deg);
    }
}

.top{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #222;
    transform: rotateX(90deg) translateZ(20.5px);
}

.top::before{
    content:'';
    top: 0;
    left: 0;
    position: absolute;
    width: 40px;
    height: 40px;
    background: #8d2ca5;
    transform: translateZ(-70px);
    filter: blur(20px);
    box-shadow: 0 0 120px rgb(119 52 181 / 20%), 0 0 200px rgb(138 64 185 / 40%),
                0 0 200px rgb(141 69 165 / 60%), 0 0  200px rgb(155 57 167 / 80%),
                0 0 200px #8f4db1;
}


/*  -- Incio para mobiles  -------------------------------------------------------------------------------------------> */

@media(max-width:767px) {

 
	 
    .cardLogin{
        width: 100%;
    }
	

}