*[type="submit"] {
    opacity: 1;
    cursor: pointer;
}
*[type="submit"].disabled {
    opacity: .5;
    cursor: not-allowed;
}

.frc-captcha * {
    /* Mostly a CSS reset so existing website styles don't clash */
    margin: 0;
    padding: 0;
    border: 0;
    text-align: initial;
    /*border-radius: px;*/
    filter: none !important;
    transition: none !important;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    background-color: initial;
    color: #f15a29;
}
.frc-captcha.enabled {
    background-color: transparent;
    opacity: 1;
    cursor: pointer;
}
.frc-captcha {
    position: relative;
    border: none;
    /*width: 100%!important;
    height: 100%!important; */
    overflow: hidden!important;
    font-size: 0.8em;
    color: #f15a29;
    float: inherit;
}
.recaptcha__icon.px48 {
    width: 48px;
    height: 100%
}
.frc-captcha b {
    font-weight: bold;
}

.frc-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 2px;
}

.frc-icon {
    fill: #f15a29;
    stroke: #f15a29;
    flex-shrink: 0;
    width: 100%
}

.frc-icon.frc-warning {
    fill: #C00;
}

.frc-success .frc-icon {
    animation: frc-fade-in 1s both ease-in;
}

.frc-content {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    flex-grow: 1;
}

.frc-banner {
    position: absolute;
    bottom: 0px;
    right: 6px;
    line-height: 1;
}

.frc-banner * {
    font-size: 10px;
    opacity: 0.8;
    text-decoration: none;
}
.frc-progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 3px 0;
    height: 4px;
    border: none;
    background-color: #eee;
    color: #222;
    width: 100%;
    transition: all 0.5s linear;
}
.recaptcha__icon .frc-err-url, .recaptcha__icon .frc-captcha-solution,
.recaptcha__icon .frc-progress,.frc-content, .frc-banner {
    display: none;
}

/* Dark theme */

.dark.frc-captcha {
    color: #fff;
    background-color: #222;
    border-color: #333;
}

 .dark.frc-captcha * {
    color: #fff;
}

.dark.frc-captcha button {
    background-color: #444;
}

.recaptcha__icon .dark .frc-icon {
    fill: #fff;
    stroke: #fff;
}

.dark .frc-progress {
    background-color: #444;
}

.dark .frc-progress::-webkit-progress-bar {
    background: #444;
}

.dark .frc-progress::-webkit-progress-value {
    background: #ddd;
}

.recaptcha__icon  .dark .frc-progress::-moz-progress-bar {
    background: #ddd;
}

@keyframes frc-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

