.register-back {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100%;
    display: none;
}

a {
    text-decoration: none;
}

.register-content {
    position: relative;
    height: 69.6%;

    width: 100%;

    top: 14.6%;
    align-content: center;
}

.register-form {
    background-color: white;
    z-index: 130;
    /*height: 100%;*/
    width: 39%;
    margin-left: 30%;
    transition: .5s all linear 0s;
}

.form-horizontal-register {
    /*background-color: aqua;*/
    /*height: 100%;*/
}

.form-title-register {
    /*background-color: aquamarine;*/
    height: 13%;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 24pt;
    margin-bottom: 15px;
    padding-top: 32px;
}

.form-title-register span {
    margin-left: 45%;
}

.form-input-register {
    position: relative;
    /*height: 60%;*/
}

.btn-verify-confirm {
    background-color: #1b53ff;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: white;
    font-size: 12pt;
    height: 2.2em;
    margin-left: 5px;
}
.btn-verify-confirm.disable{
    background-color: #3e3e3e;
}
.btn-re-verify {
    background-color: white;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #0033ff;
    font-size: 12pt;
    height: 2.2em;
    margin-left: 5px;
}

.line {
    display: flex;
}

#verify {
    display: flex;
}

#verify img {
    height: 1.8em;
    margin-left: 5px;
}

.line img {
    height: 1.8em;
    margin-bottom: 1.4em;
    margin-left: 5px;
}

.btn-re-verify.disable {
    color: gray;
}

.form-input-register input{
    display: block;
    height: 2.2em;
    width: 57%;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-left: 20%;
    margin-bottom: 1.4em;
}

.form-input-register input:first-child {
    display: inline;
}

/*.form-input-register input:last-child {*/
    /*margin-bottom: 0;*/
/*}*/

.form-input-register a {
    margin-left: 5px;
    font-size: 9pt;
    padding-top: 0.5em;
}

.form-info {
    /*background-color: beige;*/
    margin-top: 16px;
    color: #2d2d2d;
    text-align: left;
}

.form-info .form-notice {
    /*position: relative;*/
    margin-left: 20%;
    display: inline;
    font-size: 9pt;

}


.form-info .form-notice input {
    position: absolute;
    visibility: hidden;

}

.form-info .form-notice label {
    display: inline-block;
    width: 9pt;
    height: 9pt;
    /*border: 1px solid #c00;*/
    background-image: url('/static/resource/checkbox_unselected.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*border-radius: 50%;*/
}

.form-info .form-notice input:checked + label {
    /*background-color: #1b53ff;*/
    background-image: url('/static/resource/checkbox_selected.png');
}

.form-submit, .form-relogin {
    /*background-color: aquamarine;*/
    text-align: center;
    display: flex;
    align-items: center;
    height: 10%;
}

.form-relogin {
    height: 25px;
    padding-top: 30px;
    padding-bottom: 32px;
}

.form-relogin span {
    font-size: 9pt;
}

.info {
    margin-left: 22%;
    height: 1.4em;
    margin-top: -1em;
    font-size: 9pt;
    color: red;
    text-align: left;
}

.btn-submit {
    padding: 6px 12px;
    width: 32%;
    background-color: #1b53ff;
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: white;
    font-size: 12pt;

}

@media screen and (max-width: 767px) {
    .register-form {
        width: 96%;
        margin-left: 2%;
    }
    .register-content{
        top:6%;
    }
}

.btn-submit.disable {
    background-color: gray;
}



.profession_type_content {
    position: absolute;
    width: 55%;
    margin-left: 21%;
    margin-top: -1.2em;
    color: #666666;

}

.profession_type {
    background: #f2f2f2;
    height: 2.2em;
    line-height: 2.2em;
    text-align: center;
}
.profession_type:hover{
    color: white;
    background-color: #0033ff;
}
.profession {
    background-image: url("/static/resource/arrow.png");
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 98%;
    background-size: 18px;
}
.profession_type_content{
    display: none;
}
.profession_type_content.show{
    display: block;
}