

.register_info {
    width: 100%;
    padding: 32px 16px;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    position: relative;
    z-index: 0;
}

.logo_pic {
    width: 375px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.register_info .title{
    font-size: 2rem;
    color: var(--main-primary-color);
    font-weight: bold;
    margin-bottom: 40px;
}
    
.item_mian{
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.info {
    position: relative;
    margin-bottom: 24px;
}

/* google_info */
.google_info {
    width: 100%;
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #ccc;
}

.google_info>span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #c6c6c6;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.google_info .btn {
    width: 100%;
    height: 50px;
    background-color:
        #e6edff;
    color: #000;
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google_info .btn>img {
    width: 24px;
    margin-right: 16px;
}


/* chk_content */
.chk_content{
    text-align: right;
    position: relative;
    top: -8px;
}

.custom_chk input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom_chk {
    display: inline-block;
    position: relative;
    padding-left: 24px;
    color:#000000;
    cursor: pointer;
}

.custom_chk .checkmark {
    height: 16px;
    width: 16px;
    position: absolute;
    top: 1px;
    left: 2px;
    background-color: #fff;
    border: 2px solid #000000;
}

.custom_chk .checkmark:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 4px;
    width: 3px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
}

.custom_chk input:checked~.checkmark:after {
    display: block
}


/* label_up_field */
.label_up_field .delete-button{
    right: 8px;
}

.label_up_field .error_message{
    right: 8px;
}
    

.company_info{
    margin-bottom: 24px;
}

.password_field .delete-button {
    right: 40px;
}

.password_field .group input {
    padding-right: 60px;
}

/* .password_field .visible {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background-image: url("/static/v2/images/btn_visible.png");
    background-size: 100% 100%;
    cursor: pointer;
    user-select: none;
}

.password_field .invisible {
    visibility: visible !important;
    background-image: url("/static/v2/images/btn_invisible.png");
} */

.password_field .toggle_password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
     color: var(--main-primary-color);
    user-select: none;
    transition: color 0.3s;
}

.password_field .small {
    /* font-size: 12px; */
    position: absolute;
    bottom: -20px;
    right: 8px;
    color: #000000;
}

.g-recaptcha {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.aggreement {
    font-size: 12px;
    color: #8e90a1;
    font-weight: 300;
}

.aggreement > a {
    color: #0d76ff;
    font-weight: 500;
}

.aggreement > a:hover{
    text-decoration: underline;
}

.register_info .action{
    width: 100%;
}

.register_btn{
    width: 100%;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
}

input[type="submit"]:disabled {
    background-color: #ccc;
    color: #999;
    box-shadow: var(--box-shadow);
    cursor: not-allowed;
}







@media screen and (max-width:768px) {
    .item_mian {
        flex-direction: column;
        align-items: center;
    }

    .register_info .item+.item {
        margin-left: 0;
        margin-top: 16px;
    }

}
