@charset "utf-8";

@font-face { font-family: "Noto Sans TC"; font-style: normal; font-weight: 400 700; src: url("../fonts/NotoSansTC-VariableFont_wght.ttf") format("opentype"); }

/* GLOBAL - Start */

:root {
  --clr-bg: #f7f7f7;
  --clr-text: #3f3f3f;
  --clr-sub-bg: #dfdfdf;
  --clr-sub-text: #7f7f7f;
  --clr-accent-bg: #0d6efd;
  --clr-accent-text: #ffffff;
}

h1 {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: normal;
  color: inherit;
}

h2 {
  font-size: 20px;
  color: #6b3032
}

body {
  color: var(--clr-text);
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.25;
}

.form-label {
  color: var(--clr-text);
  font-size: 0.875rem;
}

.form-control,
.form-select {
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--clr-sub-text);
  border-radius: 0.5rem;
  background-color: var(--clr-bg);
  color: inherit;
  font-size: 0.875rem;
}

.form-control::placeholder {
  opacity: 0.5;
}

textarea.form-control {
  min-height: calc(9em + 1.125rem);
}

.form-select {
  padding-right: 2rem;
}

.form-check-inline {
  margin-right: 2rem;
}

.form-text {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--clr-sub-text);
}

