.navigation, .footer {
    width: 1000px;
    margin: 0 auto;
}

.loginPanel {
    padding: 5% 0 5% 0;
    width: 1000px;
    box-sizing: border-box;
    margin: 0 auto;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

.fromBody {
    width: 60%;
    flex-shrink: 0;
}

.fromBody .tit {
    line-height: 36px;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.fromBody .desc {
    font-size: 16px;
}

.fromBody .ctr {
    text-align: center;
}

.fromBody .ctr::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: #ddd;
    margin: 30px 0;
}

.fromBody .row {
    padding: 10px 0;
}

.fromBody .row>input {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    background: #fff;
    border: solid 2px #eee;
    box-sizing: border-box;
    padding: 0 20px 0 44px;
    font-size: 16px;
    font-weight: bold;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.fromBody .row>input:focus {
    color: #b22923;
}

.fromBody .row>select {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    background: #fff;
    border: solid 2px #eee;
    box-sizing: border-box;
    padding: 0 20px 0 44px;
    font-size: 16px;
    font-weight: bold;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.fromBody .row>select:focus {
    color: #b22923;
}

.fromBody .imgvrow {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.fromBody .imgvrow>input {
    border-radius: 7px 0 0 7px;
    border-right: none 0;
}

.fromBody .imgvrow>img {
    height: 50px;
    display: inline-flex;
    border-radius: 0 7px 7px 0;
    border: solid 2px #eee;
    border-left: none 0;
    box-sizing: border-box;
}

.fromBody .row>input.ico_account {
    background-image: url(../img/svg/account.svg);
}

.fromBody .row>input.ico_password {
    background-image: url(../img/svg/password.svg);
}

.fromBody .row>input.ico_vcode {
    background-image: url(../img/svg/numbers_input_form.svg);
}

.fromBody .row>select.ico_type {
    background-image: url(../img/svg/chat_message_sent.svg);
}

.fromBody .row>input.ico_idcard {
    background-image: url(../img/svg/contact.svg);
}

.fromBody .row>input.ico_mobile {
    background-image: url(../img/svg/iphone_x.svg);
}
.fromBody .row>input.ico_sms {
    background-image: url(../img/svg/sms.svg);
}

.fromBody .smsvrow {
    position: relative;
}

.fromBody .smsvrow>a {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.fromBody .smsvrow>a:hover {
    color: #b22923;
}

.fromBody .btnrow {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.fromBody .btnrow a.btnPri {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 50px;
    padding: 0 50px;
    background: linear-gradient(-142deg, #ef823a 0%, #cc0000 60%, #ff705d 90%);
    opacity: .8;
}

.fromBody .btnrow a.btnPri:hover {
    opacity: 1;
    box-shadow: 0 2px 12px rgba(255, 0, 0, .3);
}

.fromBody .btnrow a.btnSec {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border-radius: 50px;
    padding: 0 50px;
    background: linear-gradient(-142deg, #dddddd 0%, #aaaaaa 60%, #e2e2e2 90%);
    opacity: .8;
}

.fromBody .btnrow a.btnSec:hover {
    opacity: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.formDesc {
    margin-top: 0px;
    font-size: 16px;
    color: #888;
}

.formDesc dt {
    font-weight: bold;
    font-size: 24px;
    color: #000;
    line-height: 32px;
}

.formDesc dd {
    margin-top: 20px;
}

.formDesc dd p {
    padding: 6px 0;
    line-height: 24px;
}