.captcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    height: 80px;
}

.captcha-checkbox {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

input[type="checkbox"] {
    display: none;
}

label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.checkmark {
    width: 33px;
    height: 33px;
    border: 2px solid #bbb;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark.hidden {
    display: none;
}

#captcha-text {
    margin-left: 10px;
}

.loader {
    width: 33px;
    height: 33px;
    border: 5px dotted #00a039;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 3s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.success-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    border: 3px solid #bbb;
    border-radius: 4px;
    position: relative;
}

.success-checkmark {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark-inner {
    font-size: 24px;
    color: #F48121;
}

.hidden {
    display: none;
}

.captcha-logo {
    text-align: right;
}

.captcha-logo img {
    width: 80px;
}

.captcha-terms {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.captcha-terms a {
    color: #777;
    text-decoration: none;
}


