.login-body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #1b2967;
    color: #fff;
    font-size: 14px;
    line-height: 24px;

    .console {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }
    .console-image {
        position: relative;
        margin-bottom: 60px;
        width: 96px;
        height: 96px;
        &:before {
            position: absolute;
            z-index: 6;
            width: 96px;
            height: 96px;
            display: block;
            content: "";
            background: url('./0.jpg') no-repeat;
            background-position: center;
            background-size: 100% 100%;
            // border-radius: 8px;
            border-radius: 50%;
        }
    
    }
    
    .console-description {
        text-align: center;
        padding: 0 16px;
    }
    .console-image-animation {
        position: absolute;
        left: -10px;
        top: -12px;
        width: 120px;
        height: 120px;
    
        &:after {
            background: #1b2967;
            content: "";
            position: absolute;
            height: 132px;
            border-radius: 50%;
            width: 132px;
            top: 0;
            left: -8px;
            bottom: 0;
            margin: auto;
            right: 0;
            z-index: 5;
        }
    
        span {
            content: "";
            display: block;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 1px solid #007bfc;
            position: absolute;
            top: 0;
            left: -5px;
            bottom: 0;
            right: 0;
            margin: auto;
            animation: logoAnimation 4.2s linear infinite;
    
            $map: (1: 1.4s,2: 2.8s,3: 4.2s);
            @each $k,$v in $map {
                &:nth-child(#{$k}) {
                    animation: logoAnimation 4.2s linear infinite #{$v};  
                }
            }
    
        } 
    
    }

}



@keyframes logoAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    20% {
      opacity: 1;
    }
    80% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}

@keyframes rotate { 100% { transform: rotateZ(360deg); } }
* {
    box-sizing: border-box;
}