#wprecaptcha-container {
    background: #000000d1;
    padding: 20px;
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    top: 80px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#wprecaptcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#wprecaptcha-loading {
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    width: 304px;
    height: 78px;
    gap: 2rem;
    font-size: 16px;
}

#wprecaptcha-loading .wprecaptcha-spinner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid;
    border-color: #dbdcef;
    border-right-color: #474bff;
    animation: wprecaptchaSpinner 1s infinite linear;
}

@keyframes wprecaptchaSpinner {
    to {
        transform: rotate(1turn);
    }
}