/* CONTENEDOR DEL FORMULARIO */
.form-flat {
  background: linear-gradient(135deg, #061A1F, #0A2E35, #0F3F46);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #00F5D4;
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.5);
  max-width: 400px;
}

/* CAMPOS INPUT */
.form-flat input[type="text"],
.form-flat input[type="email"],
.form-flat input[type="tel"] {
  width: 100%;
  padding: 12px 15px 12px 40px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  background: #E6E6E6;
  color: #333;
  font-size: 14px;
  outline: none;
}

/* PLACEHOLDER */
.form-flat input::placeholder {
  color: #8A8A8A;
}

/* BOTÓN */
.form-flat input[type="submit"] {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #1DB9A5, #0F9F8C);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOVER BOTÓN */
.form-flat input[type="submit"]:hover {
  background: linear-gradient(135deg, #17a894, #0c8a79);
}

/* ICONOS (con Font Awesome) */
.form-flat p {
  position: relative;
}

/* ICONO NOMBRE */
.form-flat input[name="your-name"] {
  background-image: url("https://cdn-icons-png.flaticon.com/512/1077/1077114.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 18px;
}

/* ICONO EMAIL */
.form-flat input[name="your-email"] {
  background-image: url("https://cdn-icons-png.flaticon.com/512/561/561127.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 18px;
}

/* ICONO TELÉFONO */
.form-flat input[name="your-phone"] {
  background-image: url("https://cdn-icons-png.flaticon.com/512/597/597177.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 18px;
}

/* ICONO BOTÓN */
.form-flat input[type="submit"]::before {
  content: "⬇ ";
  margin-right: 5px;
}