/**
 * Connect Callback Page Styles
 *
 * @package Web_Accessibility_Guard
 */

body {
    font-family: -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: #f0f0f1;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #ddd;
    border-top-color: #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.error {
    color: #d63638;
    text-align: center;
}
.status {
    text-align: center;
}
