.contact {
  width:100%; /* Makes the field span the full width of its container */
  padding:3px; /* Adds space inside the field */
  box-sizing:border-box; /* Ensures padding and border are included in the width calculation */
  border:2px solid #ccc; /* Defines the border style, width, and color */
  border-radius:4px; /* Rounds the corners */
  background-color:#f8f8f8; /* Sets a light background color */
  font-size:1em; /* Sets the font size */
  resize:vertical; /* Allows vertical resizing only for the textarea (default is both, can be set to 'none') */
  outline:none; /* Removes the default blue outline when focused */
  color:#999
}

/* Optional: Add styles for when the field is focused */
.contact:focus {
  border-color:#4CAF50; /* Change border color on focus */
  background-color:#fff; /* Change background color on focus */
  color:#333
}
.botonEnviar {font-size:1em; width:190px; margin:0; padding:0.5em; cursor:pointer; color:#fff; background-color:#23682b}
.botonEnviar:hover {}