.captcha {
    user-select: none;
    display: flex;
    justify-content: center;
    width: 60px;
    border: 2px solid firebrick;
    border-radius: 8px;
    background-color: var(--background-soft);
    box-shadow: 1px 1px 3px;
    margin: 0px 5px;
    padding: 5px;
    text-decoration: line-through;
    font-style: italic;
    line-height: 26px;
}
.captcha-confirm {
    border: 1px solid var(--text);
    border-radius: 8px;
    margin: 0px 5px;
    background-color: var(--background-soft);
}
.captcha-restart {
    line-height: 40px !important;
    margin: 0px 10px;
    cursor: pointer;
}
.captcha-input {
    margin-left: 5px;
}

.flash-message {
    position: absolute;
    list-style-type: none;
    margin: auto;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    max-width: 600px;
    font-weight: bold;
    background-color: #d34b4bee;
    border: 2px solid var(--text);
    border-radius: 8px;
    box-shadow: var(--text) 1px 1px 3px;
}