.login_wrap {
  width: 100%;
  height: 100vh;
  /* background-color: rgba(76, 140, 195, .9); */

}

.bg {
  width: 100%;
  height: 100%;
  position: relative;
}

#login {
  position: absolute;
  left: 50%;
  min-width: 800px;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  font-size: 16px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 5px solid #182B84;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.login_line{
  width: 70%;
  height: 3px;
  background-color: #182B84;
  margin: 40px 0;
}

.title {
  width: 100%;
  font-size: 24px;
  /* font-weight: 600; */
  /* color: #409eff; */
  text-align: center;
  letter-spacing: 4px;
  /* height: 30px;
  line-height: 30px; */
}

.name {
  width: 60%;
  height: 30px;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.IDcard {
  width: 60%;
  height: 30px;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.form_label {
  color: #182B84;
  width: 100px;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
}

input {
  width: 50%;
  height: 30px;
  background-color: #ffffff;
  border: 1px solid #B9B9B9;
  border-radius: 5px;
  padding-left: 10px;
}

.btn_wrapper {
  display: flex;
  justify-content: space-around;
}

/* .login_btn{
  width: 110px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #409eff;
  color: #fff;
  border: none;
  margin-top: 50px;
} */
.btn_wrapper button {
  background: #182B84;
  /* width: 120px; */
  border: none;
  flex: 1;
  margin: 30px 10px;
  font-size: 16px;
  padding: 5px 50px;
  border-radius: 20px;

}

/* button {
  width: 26%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  
  color: #fff;
  border: none;
  margin: 10px 16px 10px 10px;

} */


#codeBox {
  width: 400px;
  height: 300px;
  border-radius: 20px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  /* position: absolute;
  top: 300px;
  left: 730px; */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tip{
  color: #999999;
  margin-top: 10px;
  display: none;
}

.mobile-footer{
  width: 100%;
  color: #9E9E9E;
  text-align: center;
  display: none;
  margin-top: 20px;
}

.mobile-footer p{
  margin: 0;
}

@media (max-width: 1024px) {
  #login {
    width: 95%;
    min-width: auto;
    height: 40%;
    border: 1px solid #283C72;
    top: 40%;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
    border-radius: 10px 10px 10px 10px;
    padding: 0;
  }
  .login_line{
    display: none;
  }
  .title{
    height: 20%;
    border-bottom: none;
    flex-direction: column;
    letter-spacing: 0;
    color: #182B84;
    font-size: 3rem;
    font-weight: bold;
  }
  .title::after {
      content: '';
      width: 70%;
      height: 1px;
      display: block;
      margin: 0 auto;
      border-bottom: 1px solid #182B84;
  }
  .tip{
      display: block;
      font-size: 1.2rem;
      font-weight: normal;
  }
  .mobile-footer{
      font-size: 1.2rem;
      display: block;
  }
  .name,
  .IDcard{
    width: 100%;
    height: auto;
    margin-bottom: 3%;
    justify-content: center;
  }
  .name input,.IDcard input{
      width: 50%;
      height: 50px;
  }
  .name input::-webkit-input-placeholder,.IDcard input::-webkit-input-placeholder {
      color: #D3D3D3;
      font-size: 2rem;
  }
  .name .form_label,.IDcard .form_label{
      color: #333333;
      font-size: 2rem;
      margin-right: 10px;
      width: 80px;
  }
  .btn_wrapper{
    width: 100%;
  }
  .btn_wrapper button{
    width: 50%;
    height: 55px;
    line-height: 30px;
    background: linear-gradient( 180deg, #FAB487 0%, #EA782F 100%);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    border-radius: 50px;
    margin: 10px 0;
    padding: 0;
    flex: none;
  }
}

@media (max-width: 760px) {
  #login {
    width: 95%;
    height: 40%;
    border: 1px solid #283C72;
    top: 50%;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
    border-radius: 10px 10px 10px 10px;
  }
  .login_line{
    display: none;
  }
  .title{
    height: 20%;
    border-bottom: none;
    flex-direction: column;
    color: #182B84;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .title::after {
      content: '';
      width: 70%;
      height: 1px;
      display: block;
      margin: 0 auto;
      border-bottom: 1px solid #182B84;
  }
  .tip{
      display: block;
      font-size: 0.8rem;
      font-weight: normal;
  }
  .mobile-footer{
      font-size: 0.8rem;
      display: block;
  }
  .name,
  .IDcard{
    width: 100%;
    height: auto;
    margin-bottom: 0;
    justify-content: center;
  }
  .name input,.IDcard input{
      width: 60%;
      height: 30px;
  }
  .name input::-webkit-input-placeholder,.IDcard input::-webkit-input-placeholder {
      color: #D3D3D3;
      font-size: 1.5rem;
  }
  .name .form_label,.IDcard .form_label{
      color: #333333;
      font-size: 1.5rem;
      margin-right: 10px;
      width: 60px;
  }
  .btn_wrapper{
    width: 100%;
  }
  .btn_wrapper button{
    width: 60%;
    height: 35px;
    line-height: 30px;
    background: linear-gradient( 180deg, #FAB487 0%, #EA782F 100%);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    border-radius: 50px;
    margin-top: 5%;
    padding: 0;
    flex: none;
  }
}

@media (max-width: 540px) {
  #login {
    height: 40%;
  }
  .btn_wrapper button{
    margin-bottom: 0;
  }
}