/* confirmation.css */
#confirmation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  font-family: 'Segoe UI', sans-serif;
}

#confirmation-message {
  text-align: center;
  max-width: 400px;
  margin-top: 100px;
}

#confirmation-message p {
  color: white; /* Asegúrate de que el fondo de la sección en Elementor sea oscuro */
  font-size: 18px;
  line-height: 1.5;
}

#check-confirmation {
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #f7c471; /* Usando tu amarillo corporativo por consistencia */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.2s;
  box-shadow: 4px 4px 0 #e0a951;
}

#check-confirmation:hover {
  background-color: #f4b64e;
  transform: translateY(-1px);
}

#status {
  margin-top: 15px;
  font-weight: bold;
  min-height: 24px;
}

/* Estados de mensaje */
#status.error { color: #ff6b6b; }
#status.success { color: #51cf66; }