/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 12 2025 | 07:10:10 */
.contacto-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Arial', sans-serif;
  color: #222;
}

.contacto-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
}

.contacto-form input[type="text"],
.contacto-form input[type="email"],
.contacto-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.contacto-form input[type="text"]:focus,
.contacto-form input[type="email"]:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: #ffb100;
  background: #fff;
  box-shadow: 0 0 5px rgba(255,177,0,0.4);
}

.contacto-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contacto-form input[type="submit"] {
  background: #ffb100;
  color: #222;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contacto-form input[type="submit"]:hover {
  background: #ff9900;
  transform: translateY(-2px);
}
