body {
  background-color: #fff;
  font-family: "微軟正黑體", "Microsoft JhengHei", Helvetica, Arial;
  font-size: 16px;
  font-weight: normal;
  color: #292929;
}

a, a:hover, a:active, a:focus {
  color: #d43082;
  text-decoration: none;
  background-color: transparent;
}

.failed {
  text-align: center;
  margin-top: 15vh;
  margin-bottom: 13px;
}

.failed-img {
  width: 280px;
}

.content-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 30px 0;
}

.content-title-large {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 30px 0;
}

/*---------------------------------------------------------------
  ^Header
---------------------------------------------------------------*/
/* ^navbar */
.navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar-logo {
  background-image: url('../img/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  display: inline-block;
  width: 268px;
  height: 36.6px;
  vertical-align: middle;
}

.navbar-link {
  padding-left: 16px;
  padding-right: 16px;
}

.navbar-banner {
  width: 100%;
  height: 46px;
  background-image: linear-gradient(to right, #e7373c, #d15b9c 34%, #e95504 68%, #f9be00);
}

@media screen and (max-width:575px) {
  .navbar {
    background-image: linear-gradient(to right, #e7373c, #d15b9c 34%, #e95504 68%, #f9be00);
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .navbar-logo {
    background-image: url('../img/logo-m.png');
    width: 195px;
    height: 26.6px;
  }

  .navbar-banner {
    display: none;
  }
}

/* ^page-header */
.page-header {
  background-color: #f2f2f2;
  text-align: center;
  padding: 32px;
  margin-bottom: 48px;
}

.page-header-container {
  width: 75%;
  margin: 0 auto;
}

.page-header-title {
  font-family: NotoSansTCBold;
  font-size: 38px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 16px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 16px;
}

.page-header-desc p {
  margin-bottom: 16px;
}

.page-header-desc p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:767px) {
  .page-header {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 24px;
  }

  .page-header-container {
    text-align: left;
    width: 90%;
  }

  .page-header-title {
    width: 100%;
  }
}

@media screen and (max-width:575px) {
  .page-header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-header-container {
    width: 100%;
  }

  .page-header-title {
    font-size: 30px;
  }
}

/*---------------------------------------------------------------
  ^Form
---------------------------------------------------------------*/
/* ^form-banner */
.form-banner {
  background-size: cover;
  background-position-x: center;
  width: 100%;
  height: 290px;
  margin-top: 72px;
  padding: 114px 48px;
}

.form-banner.house {
  background-image: image-set('../../images/house-banner.jpg'1x,
      '../../images/house-banner@2x.jpg'2x,
      '../../images/house-banner@3x.jpg'3x);
  background-image: url('../../images/house-banner.jpg');
}

.form-banner.credit {
  background-image: image-set('../../images/credit-banner.jpg'1x,
      '../../images/credit-banner@2x.jpg'2x,
      '../../images/credit-banner@3x.jpg'3x);
  background-image: url('../../images/credit-banner.jpg');
}

.form-banner.credit-change {
  background-image: image-set('../../images/credit-change-banner.jpg'1x,
      '../../images/credit-change-banner@2x.jpg'2x,
      '../../images/credit-change-banner@3x.jpg'3x);
  background-image: url('../../images/credit-change-banner.jpg');
}

.form-banner-title {
  font-size: 42px;
}

@media screen and (max-width:575px) {
  .form-banner {
    width: 100%;
    height: 200px;
    margin-top: 32px;
    padding: 75px 30px;
  }

  .form-banner-title {
    font-size: 38px;
  }
}

/* ^form-title */
.form-title {
  font-family: NotoSansTCMedium;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
}

@media screen and (max-width:575px) {
  .form-title {
    font-family: NotoSansTCMedium;
    font-size: 20px;
    margin-top: 24pxpx;
    margin-bottom: 16px;
    text-align: left;
  }
}

/* ^form-content */
.form-content {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 48px;
}

@media screen and (max-width:575px) {
  .form-content {
    margin-bottom: 24px;
  }
}

/* ^form-row */
.form-row:not(:last-child) {
  margin-bottom: 8px;
}

/* ^form-group */
.form-group {
  margin-bottom: 12px;
}

/* ^form-control */
.form-control {
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  background-color: white;
  font-size: inherit;
  height: 43px;
  padding: 8px 12px;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #999 !important;
  opacity: 1;
  /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999;
}

.form-control-plaintext:focus {
  outline: none;
}