DIG, optimize re-capture

Optimize html element size when re-capture make me choose some images on login page

// ==UserScript==
// @name         DIG, optimize re-capture
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Optimize html element size when re-capture make me choose some images on login page
// @author       You
// @match        https://www.dailyindiegame.com/account_login.html*
// @icon         https://www.google.com/s2/favicons?domain=dailyindiegame.com
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement("style");
    style.innerHTML = `
    .g-recaptcha-bubble-arrow + div {
        position: relative;
        height: 600px;
        width: 400px;
    }
    `;
    document.body.appendChild(style);
    // Your code here...
})();