* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;

  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  font-family: "Helvetica Neue", "PingFang TC", "Heiti TC", "微軟正黑體",
    sans-serif;
  color: #464646;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #fbbc0b;
}

.container {
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title {
  margin: 1em auto 0 auto;

  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.2em;

  color: #ffffff;
}

.subTitle {
  margin: 0 auto 1em auto;
  font-size: 1.5rem;
  letter-spacing: 0.2em;

  /* color: #ffffff; */
}

.formContainer {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inputContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formLabel {
  /* margin: 0 auto; */
  /* color: #ffffff; */
}

.formInput {
  padding: 10px;
  border: 0;
  box-shadow: 0 0 15px 4px #ffeb8421;
  border-radius: 4px;
  transition: 0.5s;
}

.formInput:focus {
  outline: none;
  box-shadow: 0 0 15px 4px #ffffff9f;
}

.submitButton {
  margin-top: 20px;
  background: #ffffff;
  border-radius: 4px;
  /* box-shadow: #ffffff 0 10px 20px -10px; */
  box-sizing: border-box;
  color: #fbbc0b;
  cursor: pointer;
  font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji",
    NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji",
    EmojiSymbols, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 10px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  word-break: break-word;
  border: 0;
}

#messageBox {
  padding: 10px;
  margin-top: 10px;
  max-height: 200px;
  min-height: 20px;
  overflow-y: auto;
}

#messageBox p {
  color: #ffffff;
}

::-webkit-scrollbar {
  display: none;
}
