/* Google reCAPTCHA Guard - verifying overlay */

.grc-form {
    position: relative;
}

.grc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 9999;
    border-radius: 4px;
    animation: grc-fade-in 0.15s ease-in;
}

.grc-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #d0d0d0;
    border-top-color: #4285f4;
    border-radius: 50%;
    animation: grc-spin 0.8s linear infinite;
}

.grc-overlay-text {
    font-size: 13px;
    color: #444;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes grc-spin {
    to { transform: rotate(360deg); }
}

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

.grc-widget {
    margin: 12px 0;
}
