#contacto {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#contacto p {
  width: 60vw;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 60vw;
}

.grupoForm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.labelInput {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.8rem;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  background-color: #ffffff;
  border: 0;
  outline: none;
  border: 1px solid #0d0d0d33;
  transition: all 0.3s ease-in-out;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 0.2rem #8d80bb33;
}

textarea {
  height: 150px;
  resize: none;
}

input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

select {
  padding-right: 2em;
  background-color: #ffffff;
  background-image: var(--arrow);
  background-repeat: no-repeat;
  background-position: right 0.8em center;
  background-size: 1em;
  cursor: pointer;
}

#grupoHorario {
  width: 120%;
}

#botonSubmit {
  align-self: center;
  width: 97%;
  margin-top: 6px;
  margin-bottom: 16px;
}

.error {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  #contacto h2 {
    margin: 24px 0 16px 0;
  }

  form {
    width: 90vw;
  }

  .grupoForm {
    flex-direction: column;
    gap: 0.5rem;
  }

  #grupoHorario {
    width: 100%;
  }
}