/* color */
/* font */
/* transition */
.contentBox.login {
  display: flex;
}

@media (max-width: 768px) {
  .contentBox.login {
    flex-direction: column;
  }
}

.contentBox.login .leftBox {
  border-right: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
  .contentBox.login .leftBox {
    border-right: none;
  }
}

.contentBox.login .leftBox,
.contentBox.login .rightBox {
  width: 50%;
  padding: 0 40px;
}

@media (max-width: 768px) {

  .contentBox.login .leftBox,
  .contentBox.login .rightBox {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}

.loginDesc {
  color: #000;
  font-size: 16px;
  line-height: calc(24 / 16);
  letter-spacing: 0.96px;
}

.loginForm {
  margin-top: 20px;
}

.loginFormItem {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.loginFormItem .forgetBox {
  margin-top: 10px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.loginFormItem .must {
  color: red;
  margin-right: 5px;
  font-size: 14px;
}

.loginFormItem label {
  display: flex;
  align-items: baseline;
  font-size: 18px;
  font-weight: 700;
  color: #066292;
  margin-bottom: 10px;
  letter-spacing: 1.08px;
}

.loginFormItem label .en {
  margin-left: 10px;
  font-size: 16px;
}

.loginFormItem input {
  border: none;
  border-bottom: 1px solid #000;
  padding: 5px 15px;
}

.loginFormItem input:focus {
  outline: none;
}

.loginFormItem .forget {
  display: inline-block;
  margin-top: 5px;
  text-align: right;
  font-size: 14px;
  color: #535353;
}

.loginFormItem .forget i {
  margin-right: 10px;
}

.loginBtn {
  font-size: 30px;
  width: 300px;
  max-width: 300px;
}

.lineBtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  width: 300px;
  max-width: 300px;
}

.agreeTitle {
  font-weight: 500;
  color: #066292;
  font-size: 25px;
  line-height: 1;
  position: relative;
  width: fit-content;
  letter-spacing: 3px;
}

.agreeTitle:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30px;
  width: 15px;
  height: 50px;
  background-color: #ebf9ff;
  z-index: -1;
}

.agreementContent {
  margin-top: 40px;
  margin-bottom: 20px;
}

.agreeCheckBox {
  padding: 5px 15px;
  background-color: #ebf9ff;
  color: #303030;
  margin-bottom: 40px;
  display: flex;
}

.agreeCheckBox input {
  accent-color: #066292;
}

.agreeCheckBox label {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1.28px;
  width: 100%;
}

.agreeBtnBox {
  margin-top: 50px;
  text-align: right;
}

.registerBox {
  margin-bottom: 80px;
}

.registerTitle {
  font-weight: 500;
  margin-bottom: 40px;
  color: #066292;
  font-size: 22px;
  line-height: 1;
  position: relative;
  width: fit-content;
  letter-spacing: 2.64px;
}

.registerTitle:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30px;
  width: 15px;
  height: 50px;
  background-color: #ebf9ff;
  z-index: -1;
}

@media (max-width: 640px) {
  .registerTitle {
    align-items: flex-start;
    flex-direction: column;
  }
}

.registerTitle span {
  margin-left: 10px;
}

.registerTitle:has(.same) .same {
  margin-left: auto;
}

@media (max-width: 640px) {
  .registerTitle:has(.same) .same {
    margin-left: 0;
  }
}

.registerFormItem {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.registerFormItem label {
  display: flex;
  align-items: baseline;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 1.28px;
}

.registerFormItem label .must {
  color: red;
  margin-right: 5px;
}

.registerFormItem label .en {
  margin-left: 25px;
  font-size: 15px;
}

.registerFormItem span {
  color: #066292;
}

.registerFormItem input,
.registerFormItem textarea {
  background-color: rgba(219, 216, 216, 0.1);
  border: none;
  padding: 10px 15px;
  width: 100%;
}

.registerFormItem input:focus,
.registerFormItem textarea:focus {
  outline: none;
}

.registerFormItem input+input,
.registerFormItem textarea+input {
  margin-top: 20px;
}

.member .topBox {
  margin-bottom: 30px;
}

.member .topBox .blockTitleBox {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .member .topBox {
    align-items: flex-start;
    flex-direction: column;
  }
}

.member .memberEmail {
  width: 100%;
  color: #303030;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 10px;
  margin-top: 20px;
  background-color: rgba(219, 216, 216, 0.1);
}

.member .memberTitle {
  font-size: 24px;
  color: #303030;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 16px;
  letter-spacing: 2.4px;
}

.member .memberTitle span {
  margin-left: 10px;
}

.member .memberTitle.small {
  font-size: 18px;
}

.member .memberBtns {
  display: flex;
  justify-content: flex-end;
}

.member .memberBtn {
  color: #066292;
  background-color: transparent;
  padding: 10px 20px;
  color: #066292;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
  letter-spacing: 2.8px;
}

@media (min-width: 1181px) {
  .member .memberBtn:hover {
    background-color: #066292;
    color: #fff;
  }
}

.member .memberBtn i {
  font-size: 16px;
  margin-right: 10px;
}

.member .memberInfo .toolBar {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .member .memberInfo .toolBar {
    align-items: flex-start;
    flex-direction: column;
  }
}

.member .memberInfo .memberInfoTable {
  margin-top: 10px;
  background-color: #f4f3f3;
}

.member .memberInfo .memberInfoRow {
  align-items: center;
  display: flex;
  padding: 20px;
  font-size: 18px;
  letter-spacing: 3.6px;
}

@media (max-width: 640px) {
  .member .memberInfo .memberInfoRow {
    padding: 10px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.member .memberInfo .memberInfoTitle {
  color: #066292;
  margin-right: 20px;
}

table.cart td {
  padding: 20px 0;
}

table.cart td .btnBox {
  justify-content: center;
}

table.cart td .btn.small {
  font-size: 14px;
  padding: 0 10px;
}