#contact {
  font-family: 'Titillium Web', sans-serif;
  padding: 40px 20px;
  background: #f9f9f9;
}

#contact h2 {
  text-align: center;
  margin-bottom: 10px;
}

#contact p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

#contact .form-group {
  margin-bottom: 20px;
}

#contact .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s;
}

#contact .form-control:focus {
  border-color: #18d26e;
  outline: none;
}

#contact .text-center {
  text-align: center;
}

#contact button[type="submit"] {
  background: #18d26e;
  border: none;
  padding: 12px 30px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

#contact button[type="submit"]:hover {
  background: #13a456;
}

#sendmessage,
#errormessage {
  display: none;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 6px;
}

#sendmessage {
  color: #18d26e;
  border: 1px solid #18d26e;
}

#errormessage {
  color: red;
  border: 1px solid red;
}
#sendmessage.show,
#errormessage.show {
  display: block !important;
  animation: fadeIn 0.4s ease;
}

/* Mejora visual (opcional) */
#sendmessage {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#errormessage {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Animación simple */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}