
/* new */
html{
  height: 100%;
}

body {
    width: 100%;
    height: 100%;
    min-height:100vh;
    background:url('../../images/sign_Bg.png')no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
  }
  .main-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 90vh;
    padding: 16px 5%;
  }
  .main_card{
    width: 600px;
    margin:100px auto 30px;
    background: #ffffff;
    padding: 40px 16px 40px;
    border-radius: 16px;
    box-shadow: 0px 10px 20px rgba(70, 5, 130, 0.2);
    padding-bottom: 50px;
  }
 
  .main_card .login_form{
   max-width: 80%;
   margin: 0 auto;
  }
     /* rwd */
     @media screen and (max-width:768px) { 
      .main_card{
        width: 100%;
      
      }
      .main_card .login_form{
        max-width: 90%;
        margin: 0 auto;
       }
    }

  .main_card .formTitle{
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin-bottom: 24px;
   }
  .main_card .formTitle::after{
    content: '';
    display: inline-block;
    position:absolute;
    width: 100%;
    height: 1px;
    background-color: #6C757D;
    bottom: -8px;
    right: 0;
   }

  .button-group{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .button-group .back-btn{
    width: 30px;
  }
  
  .mainLogo{
    width: 120px;
    display: block;
  }
  
  footer{
    text-align: center;
    font-size: 12px;
    color: #6C757D;
    padding: 30px 0 12px;
  }
  footer > .copyright-wrap> a{ 
    text-align: center;
    font-size: 12px;
    color: #6C757D 
  }
   /* 必填 */
  .required_dot{
    color:#DC3545;
    font-size: 16px;
  }
    
  .progress {
    height: 3px !important;
  }
  .show-pass {
    position: absolute;
    top: 6%;
    right: 5%;
  }
  .progress-bar-danger {
    background-color: #e90f10;
  }
  .progress-bar-warning {
    background-color: #ffad00;
  }
  .progress-bar-success {
    background-color: #02b502;
  }
  .fa-circle {
    font-size: 6px;
  }
  .fa-check {
    color: #02b502;
  }

  .option-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.main-title {
    font-size: 18px;
    width: 300px;
    margin: 80px auto 40px;
    position: relative;
    color: #460582;
    font-weight: bold;
    text-align: center;
}

.main-title::after {
    content: "";
    background-color: #BDBDBD;
    width: 50px;
    height: 1px;
    position: absolute;
    right: 0px;
    top: 13px;
}

.main-title::before {
    content: "";
    background-color: #BDBDBD;
    width: 50px;
    height: 1px;
    position: absolute;
    left: 0px;
    top: 13px;
}

.option_outer {
    display: flex;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto 16px;
    flex-wrap: wrap;
}

@media(max-width: 540px) {
    .option_outer {
        padding: 24px;
    }
}

.Personal-block {
  background: url('../../images/Personal.png');
}

.Enterprise-block {
  background: url('../../images/Enterprise.png');
}

.Company-block {
  background: url('../../images/Company.png');
}

.Employee-block {
  background: url('../../images/Employee.png');
}

.Personal-block, .Enterprise-block, .Company-block, .Employee-block {
  width: 200px;
  height: 200px;
  padding: 16px;
  cursor: pointer;
  margin: auto 16px;
}

.Personal-block .title, .Enterprise-block .title, .Company-block .title, .Employee-block .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.Personal-block:hover .imgarrow, .Enterprise-block:hover .imgarrow, .Company-block:hover .imgarrow, .Employee-block:hover .imgarrow {
    margin-right: 5px;
}

.sectitle {
  color: #fff;
  font-size: 14px;
}

.back-btn {
    width: 100px;
}

.progress {
  height: 3px !important;
}
.show-pass {
  position: absolute;
  top: 6%;
  right: 5%;
}
.progress-bar-danger {
  background-color: #e90f10;
}
.progress-bar-warning {
  background-color: #ffad00;
}
.progress-bar-success {
  background-color: #02b502;
}
.fa-circle {
  font-size: 6px;
}
.fa-check {
  color: #02b502;
}


