@charset "utf-8";
/* CSS Document */

form {
  max-width: 900px;
  margin: 20px auto;
  font-family: "M PLUS 1", sans-serif;
}

label {
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #ff9b43;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #ccc;
}

.required {
  color: red;
  font-size: 0.9em;
}
