/* login.css */
/* 登录页专用样式 */
/* 双数像素、规范布局、主色 #0866FF */
.gap8 {
  gap: 8px;
}

/* 页面整体背景 */
.login-body {
  background: #f5f7fc;
  font-size: 16px;
  color: #1a1a1a;
}

/* 全局容器 */
.login-wrapper {
  display: flex;
  justify-content: flex-end;
  height: calc(100vh - 65px);
  width: 100%;
  overflow: hidden;
  background: url('../image/login/login-bg.webp') no-repeat;
  background-size: cover;
}

/* 右侧表单 */
.login-panel {
  padding-top: 160px;
  padding-right: 180px;
}

.login-box {
  padding: 32px 30px 42px;
  width: 420px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 30px 0px rgba(65, 142, 222, 0.1);
  border-radius: 10px;
  border: 2px solid #FFFFFF;
}

/* 标题 */
.login-title {
  font-size: 18px;
  column-gap: 40px;
  padding-bottom: 12px;
  margin-bottom: 22px;
  text-align: center;
  color: #767676;
  border-bottom: 2px solid #E6E6E6;
}

.login-title>div {
  cursor: pointer;
}

.login-tav-active {
  position: relative;
  color: #333333;
}

.login-tav-active::after {
  content: '';
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0866FF;
}

.form-group {
  padding: 4px 12px;
  margin-bottom: 24px;
  width: 100%;
  height: 42px;
  background-color: #fff;
  border: 1px solid #C3D5E8;
  border-radius: 8px;
}

.form-icon {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #C3D5E8;
}

.form-icon img {
  width: 20px;
}

.form-input {
  height: 100%;
  border: none;
  background-color: transparent;
  outline: none;
}

.verification-box {
  margin-right: 16px;
  height: 42px;
  border: 1px solid #C3D5E8;
  border-radius: 8px;
  text-indent: 8px;
}

#verificationImg {
  width: 120px;
  height: 42px;
  cursor: pointer;
}

.forgot-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  font-size: 14px;
  color: #999999;
}

.login-btn {
  margin-top: 24px;
  width: 100%;
  height: 42px;
}

.login-content,
.register-content {
  display: none;
}

.isShow {
  display: block;
}

.verification-btn {
  height: 42px;
  background-color: #fff;
  color: #222;
  width: 100px;
}

.jump-box{
  display: flex;
  align-items: center;
  margin-top: 24px;
  user-select: none;
}
.jump-box>span{
  color: #0866FF;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .login-panel {
    padding-right: 80px;
  }
}