.grecaptcha-badge {
  transform: scale(0.2) !important; /* reduce su tamaño al 20% */
  transform-origin: bottom right !important; /* mantiene la posición original */
  opacity: 0.05 !important; /* casi invisible */
  transition: opacity 0.3s ease;
  right: 10px !important;
  bottom: 10px !important;
}

.grecaptcha-badge:hover {
  opacity: 1 !important; /* visible al pasar el mouse */
  transform: scale(1) !important; /* vuelve a tamaño normal */
}
