.buildingInfo {
  width: 70%;
  margin: 0 auto;
  margin-top: 4em;
  margin-bottom: 4em;
}

.hrLine {
    height: 1px;
    width: 100%;
    background: var(--mainColor);
    margin-top: 4em;
    margin-bottom: 4em;
}

.infoTextDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.infoTextDiv > p {
  line-height: 2em;
}

.buildingInfo div:nth-child(2) p {
  display: flex;
  align-items: center;
  width: 605px;
  justify-content: center;
}

.captcha {
  display: flex;
  align-items: flex-end;
  width: 605px;
  justify-content: end;
  margin-top: 1em;
}

.buildingInfo div:nth-child(2) p > label, .buildingInfo div:nth-child(2) form > div > label {
  min-width: 10em;
  display: inline-block;
  font-family: 'Noto Serif TC', serif;
  font-weight: 500;
  color: var(--mainColor);
}

.buildingInfo input[type=password] {
  border: none;
  border-radius: 0;
  width: 100%;
  color: var(--mainColor);
  outline: none;
  padding: 0.2em 0.5em;
  line-height: 1.2rem;
  height: 2em;
  background-color: #fff;
}

.buildingInfo select {
  border: solid 1px var(--mainColor);
  border-radius: 0;
  width: 100%;
  color: var(--mainColor);
  outline: none;
  padding: 0.2em 0.5em;
  line-height: 1.2rem;
  height: 2em;
  background-color: unset;
}

input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.buildingInfo button {
  border: none;
  border-radius: 0;
  background: var(--text-gray);
  color: #FFF;
  padding: 1em 8em;
  margin-top: 2em;
  font-family: 'Noto Serif TC', serif;
}

#building .decoration {
  top: 260px;
}

.keeplogin {
  display: flex;
  align-items: center;
  height: 1.6em;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 2em;
}

.loginDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: none;
  border: solid 1px var(--mainColor);
}

/* On mouse-over, add a grey background color */
.keeplogin:hover input ~ .checkmark {
  background-color: #edecea;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.keeplogin input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.keeplogin .checkmark:after {
  left: 6px;
  top: -1px;
  width: 8px;
  height: 18px;
  border: solid var(--text-gray);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media screen and (max-width: 428px) {
  .buildingInfo div:nth-child(2) p {
    width: 300px;
  }
  .captcha {
    align-items: flex-start;
    width: 300px;
    justify-content: end;
    flex-direction: column;
  }
  .keeplogin {
    margin-left: 0;
    margin-top: 1em;
  }
  .buildingInfo button {
    padding: 1em 4em;
  }
}