/**
 * Create by XIAOMU
 * Date: 2025/3/7
 * Name : ${NAME}
 */
.login-left {
    position: relative;
}
.aurora-effect {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.aurora-effect .color {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    position: absolute;
}

.color:nth-child(1) {
    background-color: purple;
    animation: hue-rotate 10s linear infinite, color1 19s linear infinite;
}

.color:nth-child(2) {
    background-color: #00f;
    animation: hue-rotate 15s linear infinite, color2 25s linear infinite;
}

.color:nth-child(3) {
    background-color: red;
    animation: hue-rotate 20s linear infinite, color3 15s linear infinite;
}

.a-main {
    width: 100%;
    position: absolute;
    z-index: 1000;
    height: 100%;
    background-color: #10002b8e;
    color: #fff;
    backdrop-filter: blur(200px);
    overflow: hidden;
    mix-blend-mode: soft-light;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes hue-rotate {
    to {
        filter: hue-rotate(360deg);
    }
}

@keyframes color1 {
    0% {
        top: 0%;
        left: 0%;
    }
    25% {
        left: 0%;
    }
    50% {
        top: 100%;
    }
    75% {
        left: 100%;
    }
    to {
        top: 0%;
        left: 0%;
    }
}

@keyframes color2 {
    0% {
        top: 50%;
        left: 100%;
    }
    25% {
        top: 100%;
    }
    50% {
        left: 0%;
    }
    75% {
        top: 0%;
    }
    to {
        top: 50%;
        left: 100%;
    }
}

@keyframes color3 {
    0% {
        top: 100%;
        left: 50%;
    }
    25% {
        left: 100%;
    }
    50% {
        top: 0%;
    }
    75% {
        left: 0%;
    }
    to {
        top: 100%;
        left: 50%;
    }
}
