.contacto{
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-evenly;
  }
  .contacto_form{
    display: flex;
    flex-direction: column;
    width: 500px;
    
    padding: 5px 10px;
    
  }

  .contacto_form label{

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 10px 0px;
  }
  .contacto_form p{

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 10px 0px;
    color: #6f6f6f;
    
  }
  .contacto_form h2{

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6f6f6f;
  }
  .contacto_form input ,select{

    font-family: Arial, Helvetica, sans-serif;
    padding: 5px;
    border-radius:7px;
    border: 1px solid #ccc;
    height: 30px;
    
  }
  .contacto_form textarea{
    display: block;
    height: 100%;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius:7px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .contacto_form button{
    display: table-cell;
    background: #9ac93d;
    margin-top: 5px;
    padding: 10px;
    border:none;
    width: 100px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    font-weight: 700;
  }
  