@charset "utf-8";

label {
  width: 100%;
  text-align: left;
  display: inline-block;
  margin: 24px 0 8px;
}
.label-required {
  border-radius: 10px;
  margin-right: 4px;
  width: 56px;
  display: inline-block;
  text-align: center;
  background: #2b65a4;
  color: #fff;
}
input[type="text"] {
  width: 100%;
  border: 1px solid #2b65a4;
  border-radius: 10px;
  margin: auto;
  padding: 0 14px;
  height: 40px;
  flex: inherit;
  background: #fff;
}
textarea {
  resize: none;
  width: 100%;
  height: 160px;
  flex: 1;
  border: 1px solid #2b65a4;
  border-radius: 15px;
  padding: 8px 14px;
  background: #fff;
}
button[type="submit"] {
  width: 100%;
  border-radius: 40px;
  margin: auto;
  margin-top: 24px;
  height: 40px;
  background: #2b65a4;
  color: #fff;
}
button[type="submit"]:hover {
  background: #878886;
}