body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.contacto {
  padding: 5rem 3rem;
  background-color: #13171c;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacto h2 {
  font-size: 3rem;
}

.form_input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.formulario {
  margin: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario label {
  font-size: 1.1rem;
  font-weight: 700;
}

.formulario input {
  background-color: #393e4680;
  color: white;
  border-radius: 1rem;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  letter-spacing: 1px;
}

.formulario textarea {
  resize: none;
  color: white;
  width: 250px;
  height: 250px;
  background-color: #393e4680;
  border: none;
  border-radius: 1rem;
  padding: 1rem;
}

.formulario button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.4rem;
  background-color: #00adb5;
  color: #13171c;
  border: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem;
  gap: 0.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .contacto {
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
  }

  .form_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .form_input label {
    width: 300px;
  }

  .formulario textarea {
    width: 600px;
    height: 300px;
  }

  .formulario button {
    margin-top: 1rem;
    width: 250px;
  }
}
