html {
  scroll-behavior: smooth;
}

body {
  font-family: Noto Sans TC;
}

.text {
  color: #333;
  line-height: 1.8;
}

/*Banner*/

.banner-web {
}

.banner-mobile {
  display: none;
}

.logo {
  width: 150px;
  position: absolute;
  top: 1%;
  left: 15%;
  transform: translateX(-50%);
}

@media (max-width: 428px) {
  .logo {
    width: 120px;
    position: absolute;
    top: 1%;
    left: 9%;
    transform: translateX(0%);
  }
}

/*Form*/
.form-img {
  width: 500px;
}

.form-description {
  text-align: left;
  color: rgb(236, 236, 236);
  font-size: 24px;
  letter-spacing: 1px;
}

.form-checkbox-container {
  text-align: left;
  max-width: 558px;
  margin: 0 auto;
}

.form-checkbox {
  margin: 20px 10px 20px 0;
  transform: scale(1.5);
  border: none;
}

.form-warning {
  width: 558px;
  margin: 30px auto;
  color: lightcoral;
}

.form-input {
  width: 100%;
  margin-bottom: 30px;
  height: 30px;
  padding: 10px 5px 10px 10px;
  font-size: 18px;
  border-radius: 4px;
  border: none;
  font-family: Noto Sans TC;
  outline: none;
  transition: all linear 0.2s;
}

.form-input:focus {
  outline: 4px solid #eab622;
}

.form-select {
  width: 103%;
  margin-bottom: 30px;
  height: 50px;
  padding: 10px;
  font-size: 18px;
  border-radius: 4px;
  border: none;
  font-family: Noto Sans TC;
}

.form-divider {
  width: 103%;
  height: 1px;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}

.form-button {
  border: none;
  padding: 10px 20px;
  background-color: #eab622;
  font-size: 24px;
  font-family: Noto Sans TC;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all linear 0.2s;
}

.form-button:hover {
  background-color: #c2961f;
}
/*End of Form*/

.join-img {
  max-width: 900px;
}

/*L-Mobile*/
@media (max-width: 428px) {
  .banner-web {
    display: none;
  }

  .banner-mobile {
    display: block;
  }

  /*Form*/
  .form-description {
    font-size: 18px;
    text-align: center;
  }

  .form-input {
    width: 80%;
  }

  .form-select {
    width: 82%;
  }

  .form-divider {
    width: 80%;
    margin: 0 auto 20px auto;
  }

  .form-img {
    width: 340px;
  }

  .form-checkbox-container {
    width: 330px;
    padding-left: 20px;
  }

  .form-warning {
    width: 330px;
  }

  .join-img {
    width: 360px;
  }
}
