.contactform > p:first-child {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 16px 0;
}
input,
textarea {
  width: 100%;
  padding: 8px;
}
.myform {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.input {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.input-tag {
  width: 95%;
  display: flex;
  justify-content: flex-start;
}
.input-main {
  width: 95%;
}
.btn {
  margin: 0 auto 16px;
  padding: 8px 32px;
}
@media screen and (min-width: 600px) {
  .input {
    flex-direction: row;
    align-items: center;
  }
  .input-tag {
    width: 30%;
    align-items: center;
    justify-content: center;
  }
  .input-main {
    width: 65%;
  }
}
