body {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.spinner-container {
    text-align: center;
    padding: 2rem;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #0d6efd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.captcha-container {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-captcha {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.btn-captcha:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.text-danger {
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.grecaptcha-badge {
    display: none !important;
}

.g-recaptcha-like {
    border: 1px solid #ccc;
    padding: 10px 14px;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: pointer;
}