body{
  padding:0;
}
main.content{
  padding: 0;
}
.login-title{
  font-size: 36px;
  font-weight: 500;
  line-height: 50px;
  color: #1A1A1A;
  margin-bottom: 80px;
}
.login-container{
  display: flex;
  width: 100%;
  height: 100vh;
  background: #fff;
}
.login-main{
  width: 40%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#login-form,#register-form{
  width: 100%;
  max-width: 450px;
}
.login-container .form-group{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F2F2F2;
}
.login-container .controls{
  flex: 1;
}
.login-container .form-control{
  padding: 15px;
  border: none;
  font-size: 18px;
  height:auto;
}
.form-group-icon{
  width: 18px;
  height: 18px;
}
.btn-captcha{
  font-size: 18px;
  color: #5289FF;
}
.btn-captcha:hover{
  color: #5289FFDD;
}

.login-tips{
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.login-tips a{
  color: #5289FF;
}

.login-img{
  width: 60%;
  height: 100vh;
  object-fit: cover;
  background-image: url("/assets/img/ic-login.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 70px;
  box-sizing: border-box;
}

.login-img-title{
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
}

.btn-submit{
  width: 100%;
  height: 60px;
  font-size: 18px;
  border-radius: 40px;
  background: #EB613B;
  margin-top: 36px;
}
.btn-submit:hover{
  border-color: #EB613BDD;
  background: #EB613BDD;
}

.agreement{
  margin-top: 18px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #1A1A1A;
}

.agreement-checkbox-label {
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  font-weight: normal;
}

.agreement-checkbox-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}

.agreement-checkbox:checked + .agreement-checkbox-label::before {
  background-color: #EB613B;
  border-color: #EB613B;
}

.agreement-checkbox-label::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-55%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.agreement-checkbox:checked + .agreement-checkbox-label::after {
  opacity: 1;
}

.agreement a {
  color: #EB613B;
  text-decoration: none;
}