/* Faux Captcha :3 I <3 this ^w^ */
#capture {
    text-align: left;
    width: 450px;
    height: 630px;
    margin: 0px auto;
    border: #ffffff 2px solid;
    background-color: #000000;
    color: #ffffff;
    text-shadow: none;
}

#capture-header {
    text-align: left;
    height: 5em;
    margin: 0px 10px;
}

#capture-box {
    height: 430px;
    width: 430px;
    padding: 10px;
    display: grid;
    grid-template-rows: repeat(4, 105px);
    grid-template-columns: repeat(4, 105px);
    gap: calc((100% - 420px) / 3);
}

#capture-notice {
    display: none;
    border: #ffffff 2px solid;
    border-radius: 3px;
    text-align: center;
    padding: 10px 15px;
}

.capture-tile {
    margin: 0;
    border: #ffffff 1px solid;
    padding: 0px;
    image-rendering: pixelated;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-color: #000000;
}

#capture-footer {
    display: flex;
    justify-content: space-between;
    height: 2em;
    padding: 1.5em 10px;
}

#capture-footer > span {
    margin: 10px;
    color: #ff0000;
}

.capture-error {
    display: inline-block;
    animation: capture-error 200ms ease-in-out;
}

@keyframes capture-error {
    0%{margin: 10px;}
    25%{margin: 10px 0px;}
    75%{margin: 10px 20px;}
    100%{margin: 10px;}
}

#capture-button {
    width: 80px;
    height: 3em;
}