@charset "utf-8";
/* Header Layout */
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--header-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  line-height: 80px;
}

.logo img {
  width: auto;
  height: 30px;
}

/* Banner Layout */
.title-banner {
  width: 100%;
  height: 80px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-banner h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

/* Page Inner Layout */
.inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 40px auto;
  padding: 40px;
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}

.box{
  padding: 40px;
}

.box-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.box-input > label, .box-input .input-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

/* Address Row (Spanning Columns) */
.address-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
}

.address-row > div {
  flex: 1;
}

/* Privacy Section */
.privacy-section {
  grid-column: 1 / -1;
  margin-top: 42px;
}

.privacy-section .privacy-box .check-label{
  margin-top: -4px;
}

.privacy-box{
  width: 100%;
  height: 195px;
  padding: 8px;
  margin-bottom: 10px;
  overflow-y: auto;
  font-size: 14px;
  line-height: normal;
  color: var(--black-800);
  word-break: keep-all;
  text-align: left;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
}

.privacy-box p, .privacy-box > h3, .privacy-box > ol > li{
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  color: var(--black-800);
  word-break: keep-all;
  text-align: left;
}

.privacy-box .txt-indent{
  text-indent: -12px;
  padding-left: 18px;
}

.btn-wrap {
  grid-column: 1 / -1;
  margin-top: 10px;
}

/*
*--------------------------------------------*
|                 Responsive                 |
*--------------------------------------------*
*/
@media screen and (max-width: 619px) {
  .header-wrap {
    flex-direction: row;
    padding: 15px;
  }

  .logo img {
    height: 24px;
  }

  .title-banner h2{
    font-size: 30px;
  }

  .inner{
    padding: 20px;
    margin-bottom: 20px;
  }

  .box {
    padding: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .address-row {
    flex-direction: column;
    gap: 10px;
  }

  .address-row .box-input:last-child > label{
    display: none;
  }
}

@media screen and (max-width: 340px) {
  .header-wrap {
    flex-direction: row;
    padding: 15px;
  }

  .logo img {
    height: 30px;
  }

  .box {
    padding: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .address-row {
    flex-direction: column;
    gap: 10px;
  }
}
