/* reCAPTCHA Styling for Register */
.captcha {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.captcha-field {
    margin-bottom: 20px;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Dark theme reCAPTCHA adjustments */
.g-recaptcha iframe {
    border-radius: 8px;
}

/* Error styling for captcha */
.alert-captcha {
    border: 2px solid #dc3545 !important;
    border-radius: 8px;
}

/* Development notice styling (same as login) */
.development-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    margin: 15px 0;
    color: #ffc107;
}

.dev-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.dev-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dev-text strong {
    font-size: 14px;
    font-weight: 600;
}

.dev-text small {
    font-size: 12px;
    opacity: 0.8;
}
