.recaptcha-v2-fallback {
    overflow: hidden;
    margin-bottom: 10px;
}
#qpRecaptchaWidget {
    transform-origin: 0 0;
}
.recaptcha-v2-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
}
.recaptcha-v2-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e0e0e0;
    border-top-color: #1B87E6;
    border-radius: 50%;
    animation: recaptcha-spin 0.8s linear infinite;
}
@keyframes recaptcha-spin {
    to { transform: rotate(360deg); }
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 0px !important;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}

.login-captcha {
    display: none;
}
.login-captcha.has-error {
    display: block;
    padding-top: 5px;
}
.login-captcha.has-error .material-icons,
.login-captcha.has-error .alert-text {
    display: inline-block;
    vertical-align: middle;
}
.login-captcha.has-error .material-icons {
    color: #E91D1A;
    font-size: 20px;
    margin-right: 5px;
}
.login-captcha.has-error .alert-text {
    font-size: 12px;
    font-weight: 400;
}
.login-captcha.has-error .alert-text .error > span {
    color: #E91D1A;
}
.login-captcha.has-error .alert-text > a {
    color: #1B87E6;
    text-decoration: none;
}
.login-captcha.has-error .alert-text > a:hover {
    color: #1B87E6;
    cursor: pointer;
    text-decoration: underline;
}