/* 🎨 Formulario User Submitted Posts - MGM Perú */
#usp_form {
  max-width: 750px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 0.8s ease;
}

#usp_form fieldset {
  border: none;
  margin-bottom: 20px;
}

#usp_form label {
  font-weight: 600;
  color: #003366; /* azul corporativo */
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
}

#usp_form input[type="text"],
#usp_form input[type="email"],
#usp_form input[type="url"],
#usp_form input[type="file"],
#usp_form textarea,
#usp_form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#usp_form input:focus,
#usp_form textarea:focus,
#usp_form select:focus {
  border-color: #ff0000;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  outline: none;
}

/* Botón */
#usp_form input[type="submit"] {
  background: linear-gradient(135deg, #003366, #0055aa);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 25px auto 0;
}

#usp_form input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 85, 170, 0.4);
}

/* Mensajes */
#usp-success-message {
  background: #e6ffed;
  color: #0a8a2a;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

#usp-error-message,
.usp-callout-failure {
  background: #ffe6e6;
  color: #c70000;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* Animación */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
