

.captchaBox{
    background: var(--color_gray_800);
    border-radius: 16px;
    padding: 32px 16px;
}
.captchaBox > .title{
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.captchaBox > .task{
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}
.captchaBox > .task > .taskType{
    font-size: 16px;
    font-weight: 600;
}
.captchaBox > .images{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.captchaBox > .images > div{
    margin-top: 8px;
    width: 30%;
    height: auto;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 6px;
    border: 2px solid transparent;
    padding: 4px;
    overflow: hidden;
}
.captchaBox > .images > div:hover{
    opacity: 1;
    transition: 0.2s;
}
.captchaBox > .images > div.active{
    opacity: 1;
    border: 2px solid #33B36B;
    transition: 0.2s;
}
.captchaBox > .images > div > img{
    width: 100%;
    height: auto;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .captchaBox{
        width: 100%;
        margin-top: 32px;
    }
}
@media (min-width: 768px) {
    .captchaBox{
        width: 450px;
        margin: 64px auto auto;
    }
}