/* CSS Document */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Noto+Sans+TC:wght@300;400;500;700&display=swap");
/* SASS Variable */
/* SASS Mixin */
/* Global CSS */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
  color: #333;
  font-family: 'Inter', 'PingFang', 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
  margin: 0;
}

::-moz-selection {
  background-color: #f5b939;
  color: white;
}

::selection {
  background-color: #f5b939;
  color: white;
}

a {
  color: #f5b939;
}

a:hover {
  color: #ecb119;
  text-decoration: none;
}

button {
  cursor: pointer;
}

/* Utility CSS */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.globalNav {
  background-color: #f5b939;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
}

@media (max-width: 767px) {
  .globalNav {
    padding: 6px 12px;
  }
}

.globalNav__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .globalNav__brand {
    height: 60px;
    font-size: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .globalNav__brand {
    height: 48px;
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .globalNav__brand {
    height: 36px;
    font-size: 24px;
  }
}

.globalNav__brand-img {
  height: inherit;
}

.globalNav__brand-img img {
  height: 100%;
  width: auto;
}

.globalNav__brand-text {
  color: #fff;
}

/* BODY */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.report-form {
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 720px;
  margin: 60px auto;
  padding: 60px;
}

@media (max-width: 767px) {
  .report-form {
    margin: 36px auto;
    padding: 36px 18px;
  }
}

.custom-form {
  width: 100%;
  max-width: 480px;
  /* Customize the Checkbox by W3C */
}

.custom-form-title {
  color: #333;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .custom-form-title {
    font-size: 24px;
  }
}

.custom-form-group {
  margin-bottom: 18px;
}

.custom-form-label {
  color: #333;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 8px;
}

.custom-form-label__required {
  color: #C74286;
  font-size: 13px;
  margin-left: 4px;
}

.custom-form-field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  border-radius: 8px;
  color: #666;
  display: block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  padding: 8px 12px;
}

.custom-form-field:focus {
  border-color: #b88519;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 185, 57, 0.5);
          box-shadow: 0 0 0 3px rgba(245, 185, 57, 0.5);
  color: #333;
  outline: 0;
}

.custom-form-field::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.custom-form-field:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.custom-form-field::-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.custom-form-field::placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.custom-form-button {
  background-color: #ecb119;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 12px 24px;
}

@media (max-width: 767px) {
  .custom-form-button {
    font-size: 18px;
    padding: 8px 18px;
  }
}

.custom-form-button:hover {
  background-color: #f5b939;
}

.custom-form-checkbox {
  color: #666;
  cursor: pointer;
  display: block;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  margin-bottom: 12px;
  padding-left: 35px;
  /* On mouse-over, add a grey background color */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}

.custom-form-checkbox:hover input ~ .custom-form-checkbox__mark {
  background-color: #999;
}

.custom-form-checkbox input {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  /* When the checkbox is checked, add a blue background */
}

.custom-form-checkbox input:checked ~ .custom-form-checkbox__mark {
  background-color: #ecb119;
  /* Show the checkmark when checked */
}

.custom-form-checkbox input:checked ~ .custom-form-checkbox__mark:after {
  display: block;
}

.custom-form-checkbox__mark {
  background-color: #e6e6e6;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
}

.custom-form-checkbox__mark:after {
  /* Create the checkmark/indicator (hidden when not checked) */
  content: "";
  display: none;
  position: absolute;
  /* Style the checkmark/indicator */
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*# sourceMappingURL=main.css.map */