

.fu-auth2 {
  --fu2-side-width: 34%;
  --fu2-main-bg: #f6f8fb;
  --fu2-card-w: 460px;
  --fu2-card-radius: 0px;
  --fu2-card-py: 30px;
  --fu2-card-px: 34px;
  --fu2-shadow: 6%;
  --fu2-input-h: 46px;
  --fu2-input-radius: 0px;
  --fu2-btn-h: 46px;
  --fu2-btn-radius: 0px;
  --fu2-logo-h: 44px;
  --fu2-title-size: 26px;
  --fu2-desc-size: 14px;
  --fu2-bg-blur: 0px;
  display: flex;
  min-height: 100vh;
  background: var(--fu2-main-bg);
}

.fu-auth2.fu-auth2-side-right {
  flex-direction: row-reverse;
}
.fu-auth2.fu-auth2-side-right .fu-auth2-side {
  border-right: 0 !important;
  border-left: 1px solid #eef2f7;
}
.fu-auth2-side {
  position: relative;
  width: var(--fu2-side-width, 34%);
  min-height: 100vh;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  box-sizing: border-box;
  border-right: 1px solid #eef2f7;
  overflow: hidden;
}

.fu-auth2-side::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--fu2-side-img, none);
  background-size: cover;
  background-position: var(--fu2-side-pos, center) center;
  background-repeat: no-repeat;
  filter: blur(var(--fu2-bg-blur, 0px));
  transform: scale(calc(1 + var(--fu2-bg-blur, 0px) / 60));
  pointer-events: none;
}
.fu-auth2-side::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15, 23, 42, var(--fu2-overlay, 0));
  pointer-events: none;
}
.fu-auth2-side-logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
}
.fu-auth2-side-logo img {
  max-height: var(--fu2-logo-h, 44px);
  max-width: 200px;
  object-fit: contain;
}
.fu-auth2-side-text {
  position: relative;
  z-index: 2;
}
.fu-auth2-side-text h1 {
  margin: 0 0 10px;
  font-size: var(--fu2-title-size, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.fu-auth2-side-text p {
  margin: 0;
  font-size: var(--fu2-desc-size, 14px);
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
}

.fu-auth2-right {
  position: relative;
  width: var(--fu2-right-width, 30%);
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  box-sizing: border-box;
  border-left: 1px solid #eef2f7;
  overflow: hidden;
}
.fu-auth2-right::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--fu2-right-img, none);
  background-size: cover;
  background-position: var(--fu2-right-pos, center) center;
  background-repeat: no-repeat;
  filter: blur(var(--fu2-right-blur, 0px));
  transform: scale(calc(1 + var(--fu2-right-blur, 0px) / 60));
  pointer-events: none;
}
.fu-auth2-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15, 23, 42, var(--fu2-right-overlay, 0.3));
  pointer-events: none;
}
.fu-auth2-right-text {
  position: relative;
  z-index: 2;
}
.fu-auth2-right-text h1 {
  margin: 0 0 10px;
  font-size: var(--fu2-title-size, 26px);
  font-weight: 700;
  line-height: 1.4;
}
.fu-auth2-right-text p {
  margin: 0;
  font-size: var(--fu2-desc-size, 14px);
  line-height: 1.8;
  opacity: .85;
}
.fu-auth2-main {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.fu-auth2-main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--fu2-mbg-left, 0);
  right: var(--fu2-mbg-right, 0);
  z-index: 0;
  width: var(--fu2-mbg-w, 100%);
  margin: 0 auto;
  background-image: var(--fu2-mbg-img, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(var(--fu2-mbg-blur, 0px));
  transform: scale(calc(1 + var(--fu2-mbg-blur, 0px) / 60));
  pointer-events: none;
}
.fu-auth2-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--fu2-mbg-left, 0);
  right: var(--fu2-mbg-right, 0);
  z-index: 1;
  width: var(--fu2-mbg-w, 100%);
  margin: 0 auto;
  background: rgba(15, 23, 42, var(--fu2-mbg-overlay, 0));
  pointer-events: none;
}
.fu-auth2-header,
.fu-auth2-main-inner,
.fu-auth2-main .fu-auth2-footer {
  position: relative;
  z-index: 2;
}
.fu-auth2-header {
  padding: 12px 24px 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
.fu-auth2-main-inner {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.fu-auth2-card {
  width: 100%;
  max-width: var(--fu2-card-w, 460px);
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: var(--fu2-card-radius, 0);
  box-shadow: 0 8px 30px rgba(15, 23, 42, calc(var(--fu2-shadow, 6%) / 100));
  padding: var(--fu2-card-py, 30px) var(--fu2-card-px, 34px) calc(var(--fu2-card-py, 30px) - 4px);
  box-sizing: border-box;
}
.fu-auth2-card-logo {
  display: none;
  justify-content: center;
  margin-bottom: 22px;
}
.fu-auth2-card-logo img {
  max-height: 38px;
  max-width: 150px;
  object-fit: contain;
}

.fu-auth2-mobile-bar {
  display: none;
}

.fu-auth2-card-aux.fu-auth2-aux-login {
  display: none;
}
.fu-auth2-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eef2f7;
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.fu-auth2-card-head .code_login-tab {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
}
.fu-auth2 .login-tab-separate {
  display: none;
}
.fu-auth2 .login-tab-item {
  position: relative;
  padding: 4px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  background: none;
  border-bottom: 0 !important;
}
.fu-auth2 .login-tab-item.active {
  color: var(--primary, #2563eb);
}
.fu-auth2 .login-tab-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  background: var(--primary, #2563eb);
}
.fu-auth2-card-aux {
  font-size: 13px;
  color: #64748b;
  white-space: nowrap;
}
.fu-auth2-card-aux a {
  color: var(--primary, #2563eb);
  text-decoration: none;
}
.fu-auth2-reg-line {
  margin: 12px 0 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}
.fu-auth2-reg-line a {
  color: var(--primary, #2563eb);
  text-decoration: none;
}
.fu-auth2-card-body .tab-pane {
  display: none;
}
.fu-auth2-card-body .tab-pane.active {
  display: block;
}
.fu-auth2 .form-group {
  margin-bottom: 16px;
}
.fu-auth2 .form-group > label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  color: #0f172a;
  font-weight: 400;
}
.fu-auth2 .form-control {
  display: block;
  width: 100%;
  height: var(--fu2-input-h, 46px);
  padding: 0 14px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--fu2-input-radius, 0);
  box-shadow: none;
  box-sizing: border-box;
}
.fu-auth2 .form-control:focus {
  border-color: var(--primary, #2563eb);
  outline: none;
  box-shadow: none;
}
.fu-auth2 .input-group {
  display: flex;
  align-items: stretch;
}
.fu-auth2 .input-group .form-control {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}
.fu-auth2 .input-group-append {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  height: var(--fu2-input-h, 46px) !important;
}
.fu-auth2 .input-group-append .btn,
.fu-auth2 .input-group .btn-primary {
  height: 100% !important;
  min-height: var(--fu2-input-h, 46px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--fu2-input-radius, 0) !important;
  white-space: nowrap;
}
.fu-auth2 .fu-phone-code-select {
  width: 92px;
  flex: 0 0 92px;
  height: var(--fu2-input-h, 46px) !important;
  min-height: var(--fu2-input-h, 46px);
  padding: 0 6px !important;
  margin: 0;
  border: 1px solid #e2e8f0 !important;
  border-right: 0 !important;
  border-radius: var(--fu2-input-radius, 0) !important;
  background-color: #fff;
  font-size: 13px;
  line-height: calc(var(--fu2-input-h, 46px) - 2px);
  box-sizing: border-box !important;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.fu-auth2 .btn-primary {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  border-radius: var(--fu2-btn-radius, 0);
  font-weight: 600;
}
.fu-auth2 .btn-primary:hover,
.fu-auth2 .btn-primary:focus {
  background: var(--primary-hover, #1d4ed8);
  border-color: var(--primary-hover, #1d4ed8);
}
.fu-auth2 .btn-block {
  display: block;
  width: 100%;
  height: var(--fu2-btn-h, 46px);
  font-size: 15px;
  border-radius: var(--fu2-btn-radius, 0);
}
.fu-auth2 .d-flex a.text-primary,
.fu-auth2 a.text-primary {
  color: var(--primary, #2563eb);
  text-decoration: none;
  font-size: 13px;
}
.fu-auth2 .text-primary.pointer {
  font-size: 13px;
}
.fu-auth2 .JYcaptchacss label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  color: #0f172a;
}
.fu-auth2 .ExtremeTest_captcha {
  min-height: 46px;
}
.fu-auth2 .Oauth_login .other-login {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 12px;
}
.fu-auth2 .Oauth_login .gray-line {
  flex: 1 1 auto;
  height: 1px;
  background: #eef2f7;
}
.fu-auth2 .Oauth_login .list-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.fu-auth2 .Oauth_login .list-inline-item .icon,
.fu-auth2 .Oauth_login .social-list-item {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fu-auth2 .qrCodeContainer {
  min-height: 180px;
  margin-bottom: 14px;
}
.fu-auth2 .serviceTerms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.7;
}
.fu-auth2 .serviceTerms a {
  color: var(--primary, #2563eb);
  text-decoration: none;
}
.fu-auth2 .custom-checkbox {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border: 1px solid #cbd5e1;
  border-radius: 0;
  cursor: pointer;
  background: #fff;
}
.fu-auth2 .custom-checkbox.checked {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
}
.fu-auth2-footer {
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: #94a3b8;
}
.fu-auth2-footer a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 4px;
}
@media (max-width: 900px) {
  
  .fu-auth2 {
    display: block;
    background: #fff;
  }
  .fu-auth2-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
  }
  .fu-auth2-mobile-logo img {
    max-height: 38px;
    max-width: 150px;
    object-fit: contain;
  }
  .fu-auth2-mobile-home {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
  }
  .fu-auth2-mobile-banner {
    display: block;
    height: 52px;
    background: #fff;
  }
  .fu-auth2-side {
    display: none;
  }
  .fu-auth2-right {
    display: none;
  }
  .fu-auth2-main::after,
  .fu-auth2-main::before {
    display: none !important;
  }
  .fu-auth2-main {
    background: #fff;
  }
  .fu-auth2-header {
    padding: 12px 16px 0;
  }
  .fu-auth2-main-inner {
    padding: 26px 24px 28px;
    align-items: flex-start;
  }
  .fu-auth2-card {
    max-width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  
  .fu-auth2-card-aux.fu-auth2-aux-login {
    display: block;
    font-size: 14px;
  }
  .fu-auth2-reg-line {
    display: none;
  }
  .fu-auth2-card-head {
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  .fu-auth2 .login-tab-item {
    font-size: 16px;
    padding: 2px 0 10px;
  }
  .fu-auth2 .login-tab-item.active::after {
    bottom: -15px;
  }
  .fu-auth2 .form-group {
    margin-bottom: 16px;
  }
  .fu-auth2 .form-group > label {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .fu-auth2 .form-control,
  .fu-auth2 .input-group-append,
  .fu-auth2 .input-group-append .btn,
  .fu-auth2 .input-group .btn-primary,
  .fu-auth2 .fu-phone-code-select {
    height: 44px !important;
    min-height: 44px;
    font-size: 14px;
  }
  .fu-auth2 .fu-phone-code-select {
    line-height: 42px;
    width: 84px;
    flex: 0 0 84px;
    padding: 0 4px !important;
  }
  .fu-auth2 .btn-block {
    height: 46px;
    font-size: 15px;
  }
  .fu-auth2 .JYcaptchacss label {
    margin-bottom: 6px;
    font-size: 13px;
  }
  .fu-auth2 .ExtremeTest_captcha {
    min-height: 44px;
  }
  .fu-auth2 .Oauth_login .list-inline {
    margin-top: 10px;
  }
  
  .fu-auth2-footer {
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    text-align: left;
    font-size: 14px;
    color: #94a3b8;
    background: #fff;
  }
}
