@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600&display=swap');

body {
  background-color: #f1f4f8;
  font-family: 'Syne', sans-serif;
  margin: 0;
  padding: 0;
}

form {
  max-width: 420px;
  margin: 60px auto;
  background-color: #e9edf2;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.2);
}

form input,
form select {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 20px;
  background-color: white;
  font-size: 16px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Syne', sans-serif;
}

form input::placeholder,
form select::placeholder {
  color: #999;
  font-weight: 400;
}

form button.zf-submitColor {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 20px;
  background-color: #0f1115;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.8px;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
}

form button.zf-submitColor:hover {
  background-color: #1b1d22;
}

.zf-templateWrapper {
  padding: 0 !important;
}

ul.zf-fmFooter,
label {
  display: none !important;
}

.zf-errorMessage {
  display: none !important;
}
/* Oculta bullets de listas */
ul, ul li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Ajuste final del botón */
button.zf-submitColor::before {
  content: "ENVIAR MENSAJE";
}
button.zf-submitColor {
  font-size: 14px;
  color: white;
  background-color: #0f1115;
  text-transform: uppercase;
  border-radius: 20px;
  font-weight: 600;
}

/* Altura más cómoda de campos */
form input,
form select {
  height: 55px;
}

