.container {}

.hidden {
    display: none;
}

.hcaptcha-container {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    max-width: 300px;
    font-family: Arial, sans-serif;
}

.hcaptcha-body {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.hcaptcha-submit {
    margin-top: 24px;
}

.hcaptcha-submit-button {
    width: "100px";
    font-size: 16px;
    font-weight: 400;
}

.hcaptcha-submit-button.disabled {

}

.hcaptcha-checkbox {
    width: 20px;
    height: 20px;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hcaptcha-checkbox.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid #5c96b8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.hcaptcha-checkbox.checked::after {
    content: "✓";
    padding: 2px;
    color: whitesmoke;
    font-size: 24px;
    font-weight: 700;
    background: #1c8ae46e;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.hcaptcha-logo {
   position: absolute;
   right: 10px;
   top: 5px;
   
}

.hcaptcha-text {
    font-size: 14px;
    color: #333;
}

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

