﻿/* reCAPTCHA - BEGIN */
.rsicc-page-warning {
    background-color: #fff3cd;
    border: 1px solid #856404;
    border-radius: .25rem;
    color: #856404;
    font-size: 1.1em;
    font-weight: 700;
    margin: 1rem;
    padding: .75rem 1.25rem;
    position: relative;
}

/* Spinner overlay */
#recaptchaOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    text-align: center;
    flex-direction: column;
}

    #recaptchaOverlay .rsicc-alert {
        align-items: center;
        background-color: rgba(255, 255, 255, 0.75);
        border-radius: 6px;
        color: #000;
        display: flex;
        margin-top: 1rem;
        padding: .5rem;
    }

        #recaptchaOverlay .rsicc-alert .rsicc-spinner {
            animation: spin 1s linear infinite;
            border: 6px solid #000;
            border-radius: 50%;
            border-top: 6px solid #00aaff;
            height: 25px;
            width: 25px;
        }

        #recaptchaOverlay .rsicc-alert .rsicc-text {
            margin-left: 1rem;
        }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* reCAPTCHA - END */
