.um-field-honeypot {
    display: none !important;
}
/* === Quiz Maker (Ays) - Raven responsive sin scroll === */

/* La pregunta en columna y centrada */
.ays-quiz-container .ays-question {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Imágenes de la pregunta (todas las rutas posibles) */
.ays-quiz-container img,
.ays-quiz-container .ays-question img,
.ays-quiz-container .ays-question .ays-image img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 65vh !important;   /* ajustá a 70–75vh si querés más grande */
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Contenedor de respuestas debajo, centrado y en filas si hace falta */
.ays-quiz-container .ays-answers,
.ays-quiz-container .ays-question .ays-answers,
.ays-quiz-container .ays-question .ays-answers-list {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 8px 16px !important;        /* espacio entre opciones */
  margin-top: 10px !important;
}

/* Cada opción con un pequeño margen para que “respire” */
.ays-quiz-container .ays-answers label,
.ays-quiz-container .ays-answers .ays-answer,
.ays-quiz-container .ays-answers li {
  margin: 4px 8px !important;
}

/* Móvil: un poco menos de alto para que entren imagen + opciones */
@media (max-width: 480px) {
  .ays-quiz-container .ays-question img,
  .ays-quiz-container .ays-question .ays-image img {
    max-height: 55vh !important;
  }
}
/* --- FORMULARIO DE INICIO DE SESIÓN ULTIMATE MEMBER --- */

/* Color blanco para las etiquetas */
.um-login .um-field-label {
  color: #ffffff !important;
  font-weight: 500;
}

/* Bordes redondeados en los campos */
.um-login .um-field-area input[type="text"],
.um-login .um-field-area input[type="password"],
.um-login .um-field-area input[type="email"] {
  border-radius: 10px;
  border: 1px solid #cccccc;
  padding: 10px 14px;
  background-color: #fff;
}

/* Color y estilo del botón Acceder */
.um-login .um-button {
  background-color: #ff7a00 !important; /* naranja */
  border-radius: 10px;
  color: #fff !important;
  font-weight: 600;
  text-transform: none;
  padding: 10px 0;
  transition: all 0.3s ease;
}

/* Efecto hover del botón */
.um-login .um-button:hover {
  background-color: #e96b00 !important;
  transform: translateY(-1px);
}

/* Texto de error o mensajes */
.um .um-field-error,
.um .um-field-block span.um-error-text {
  color: #ffb3b3;
}