/* === reCAPTCHA Styling for Education Pro Login Form === */

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.recaptcha-wrapper .g-recaptcha {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 10px;
  background-color: #f8f9fa;
}

.card-login .g-recaptcha iframe {
  transform: scale(0.95);
  transform-origin: center center;
}

/* Responsive */
@media (max-width: 768px) {
  .card-login .g-recaptcha iframe {
    transform: scale(0.85);
  }
}

