/*
 * reCAPTCHA Styles
 * Separate CSS file to avoid conflicts with existing styles
 */

/* Desktop styles */
#contact .inquiry .recaptcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .inquiry .recaptcha-wrapper .g-recaptcha {
    transform: scale(1);
    transform-origin: center;
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    #contact .inquiry .recaptcha-wrapper {
        margin: 24px 0 20px;
        padding: 16px;
    }

    #contact .inquiry .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}
