#captcha_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .25s, visibility .25s;
    -moz-transition: opacity .25s, visibility .25s;
    -ms-transition: opacity .25s, visibility .25s;
    -o-transition: opacity .25s, visibility .25s;
    transition: opacity .25s, visibility .25s;
}

#captcha_modal.active {
    opacity: 1;
    visibility: visible;
}

#captcha_modal_container {
    width: 480px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

#backupCaptcha {
    margin-bottom: 20px;
}

#captcha_backup_message_wrapper {
    margin-bottom: 20px;
}

#captcha_backup_form input {
    width: 100%;
    height: 50px;
}

#captcha_backup_image_wrapper {
    text-align: center;
}

#captcha_backup_input_wrapper {
    position: relative;
}

#securityCode.error {
    border: 1px solid red;
}

#captcha_backup_reload_wrapper {
    margin: 15px 0;
}

#backupCaptchaSubmit {
    border: 2px solid #e74d33;
    color: #fff;
    background-color: #e74d33;
    border-radius: 5px;
    padding: 0.6em 53px 0.5em;
    font-family: 'BarlowSemiCondensed';
    font-weight: normal;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.6rem;
    text-decoration: none !important;
    -webkit-transition: color .25s, background-color .25s, border .25s;
    -moz-transition: color .25s, background-color .25s, border .25s;
    -ms-transition: color .25s, background-color .25s, border .25s;
    -o-transition: color .25s, background-color .25s, border .25s;
    transition: color .25s, background-color .25s, border .25s;
}

#backupCaptchaSubmit:hover {
    background-color: #e96751;
    border: 2px solid #e96751;
}

.grecaptcha-badge {
    visibility: hidden;
}