html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#captcha-geetest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#zhiren {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-recaptcha {
    background-color: #007bff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#moving-div {
    width: 100px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 0.75rem crimson);
}

#bg {
    width: 100vw;
    height: 100vh;
    background: url("2K-16-10.png") no-repeat center center fixed;
    background-size: cover;
    z-index: -99;
    position: absolute;
    filter: blur(8px);
}

@keyframes moveLeftRight {

    0%,
    100% {
        transform: translateX(0%);
        /* Move to the left */
    }

    50% {
        transform: translateX(1000%);
        /* Move to the right */
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.g-recaptcha iframe {
    animation: zoom 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

@keyframes zoom {
    0% {
        scale: 1;
    }

    50% {
        scale: 2;
    }

    100% {
        scale: 1;
    }
}

.h-captcha iframe {
    animation: dickAnimation 3s infinite;
}

@keyframes dickAnimation {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(5);
    }

    100% {
        filter: brightness(1);
    }
}

.VAPTCHAContainer {
    animation: zoomvcaptcha 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

@keyframes zoomvcaptcha {
    0% {
        scale: 1;
    }

    25% {
        scale: 2;
    }

    50% {
        scale: 3;
    }

    75% {
        scale: 2;
    }

    100% {
        scale: 1;
    }
}

#body {
    animation: smartMargin 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes smartMargin {
    0% {
        margin: 0;
    }

    50% {
        margin: 100px;
    }

    100% {
        margin: 0;
    }
}

#bg {
    animation: bg 10s infinite;
}

@keyframes bg {
    0% {
        filter: blur(8px) hue-rotate(0deg);
    }

    50% {
        filter: blur(8px) hue-rotate(180deg);
    }

    100% {
        filter: blur(8px) hue-rotate(360deg);
    }
}

.VAPTCHA-init-main {
    display: table;
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
}


.VAPTCHA-init-loading {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}


.VAPTCHA-init-loading>a {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: none;
}


.VAPTCHA-init-loading .VAPTCHA-text {
    font-family: sans-serif;
    font-size: 12px;
    color: #cccccc;
    vertical-align: middle;
}