.input_table{
    width: 100%;
    display: table;
    margin: auto;
    text-align: center;
}
.input_table table{
    width: 100%;
}
.input_table table th{
    text-align: center;
}
.input_table input, .input_table textarea{
    width: 100%;
    background-color: white;
    padding: 2px;
    text-align: left;
}
.input_table input:focus, .input_table textarea:focus{
    border: 2px solid black;
}
.input_captcha input{
    width: 50%;
    display: table;
    float: left;
    margin: auto;
    text-align: center;
}
.input_captcha img{
    width: 100px;
    height: 45px;

}

.check_password_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 140px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
    max-width: 350px;
    width: 98%;
}
.check_password_title{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}
.check_password_content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.check_password_content input{
    width: 200px;
    height: 30px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding-left: 10px;
}
.check_password_content .check_password_btn{
    width: 100px;
    height: 30px;
    background-color: #f1f1f1;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    margin-left: 10px;
    cursor: pointer;
}
