.login-box {
    background-color: #000035;
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    z-index: 99;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}
.login-content-wrapper {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

.login-box .login-content-wrapper .login-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
    margin-bottom: 100px;
}

.cube {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 1px #0055ff;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    animation: cube 12s ease-in forwards infinite;
}

.cube:nth-child(2n) {
    border-color: #999ba0;
}

.cube:nth-child(2) {
    animation-delay: 0.5s;
    left: 25vw;
    top: 40vh;
}

.cube:nth-child(3) {
    animation-delay: 2s;
    left: 75vw;
    top: 50vh;
}

.cube:nth-child(4) {
    animation-delay: 4s;
    left: 90vw;
    top: 10vh;
}

.cube:nth-child(5) {
    animation-delay: 6s;
    left: 10vw;
    top: 85vh;
}

.cube:nth-child(6) {
    animation-delay: 8s;
    left: 50vw;
    top: 10vh;
}

@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }

    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

.login-box .login-content-wrapper .form-card {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    border: 5px solid #fff;
    text-align: center;
}

.login-box .login-content-wrapper .form-card .form-head {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.login-box .login-content-wrapper .form-card .form-head .logo {
    margin-bottom: 10px;
}

.login-box .login-content-wrapper .form-card .form-head .title {
    color: #fff;
}

.login-box .login-content-wrapper .form-card .form-head .sub-title {
    color: #fff;
}