﻿.recaptcha-wrapper {
    transform: scale(1);
    transform-origin: 0 0;
    width: 302px; /* tamaño real del recaptcha */
}

/* Celulares medianos */
@media (max-width: 500px) {
    .recaptcha-wrapper {
        position: relative;
        left: 50%;
        transform: scale(0.8) translateX(-50%);
    }
}

/* Celulares chicos */
@media (max-width: 380px) {
    .recaptcha-wrapper {
        position: relative;
        left: 50%;
        transform: scale(0.7) translateX(-50%);
    }
}
