body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
}
.title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    padding-top: 10px;
    padding-bottom: 10px;
    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    width: 20vw;
    margin: auto;
    border: 1px solid gray;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: #e8e7e7 solid 1px;
    
}

label {
    font-size: 18px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: none;
    margin-left: 10px;

}

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

#captchaResult {
    margin-top: 20px;
    font-size: 18px;
}

img{
    width: 50px;
}

