
div:has(> .captcha) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.captcha-refresh {
    font-size: 1.2rem;
    cursor: pointer;
}

#captcha-refresh-1 {
    display: none;
}

#captcha-refresh-2 {
    display: block;
}

@media (max-width: 350px) {
    div:has(> .captcha) {
        flex-wrap: wrap;
    }

    .parent {
        display: flex;
        flex-wrap: wrap;
    }

    .captcha-refresh, .captcha {
        flex: 1;
    }

    #id_captcha_1 {
        flex: 0 0 100%;
    }

    #captcha-refresh-1 {
        display: block;
    }

    #captcha-refresh-2 {
        display: none;
    }
}