.form_flex {
  display: flex;
  justify-content: left;
  margin: 30px 0;
}

.form_left {
  width: 30%;
  text-align: left;
}

.form_right {
  width: 70%;
  text-align: left;
}

.form_contents_flex {
  display: flex;
  justify-content: space-between;
}

input {
  padding: 8px 14px;
  /* border-color: lightgray; */
}

.form_contents_flex>a {
  align-items: center;
  padding: 10px;
  text-decoration: underline;

}

select {
  padding: 8px 14px;
  width: 100%;
}

::placeholder {
  text-align: start;
}

textarea {
  resize: none;
  padding: 8px 14px;
  height: 100px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form_contents_flex>input {
  margin: 10px 0;
}

h4 {
  margin: 10px 0;
}

@media only screen and (max-width:641px) {
  .form_contents_flex {
    flex-direction: column;
  }
}