p.comment-form-captcha {
    display: flex;
    flex-direction: row;
    width: 100px;
    align-items: center;
    gap: 12px;
}

p.comment-form-captcha #captcahWrap {
    display: flex;
    align-items: center;
    gap: 3px;

}

p.comment-form-captcha #captcahWrap input {
    width: 38px;
    padding: 2px;
    text-align: center;
}

p.comment-form-captcha svg.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}