/* Contenedor general del formulario */
.wpcf7 form {
  background: #090A0E;
  padding: 30px;
  border-radius: 16px;
}

/* Etiquetas: Nombre, Email, Asunto, Mensaje */
.wpcf7 label {
  color: #F4F4F4;
  font-size: 16px;
  font-weight: 600;
}

/* Campos de texto, email y mensaje */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  background: #111318;
  color: #F4F4F4;
  border: 1px solid #00B7B1;
  border-radius: 10px;
  padding: 14px;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 15px;
}

/* Color del texto placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #999;
}

/* Efecto al seleccionar un campo */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #8847B7;
  outline: none;
  box-shadow: 0 0 12px rgba(136, 71, 183, 0.5);
}

/* Botón enviar */
.wpcf7 input[type="submit"] {
  background: #FF7200;
  color: #F4F4F4;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover del botón */
.wpcf7 input[type="submit"]:hover {
  background: #00B7B1;
  color: #090A0E;
}