:root,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f6f7fb;
    overflow: auto;
    box-sizing: border-box;
    background-image: url("./img/img_bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.wrapper {
    position: relative;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    background-color: #fff;
    box-shadow: 0px 2px 30px 0px #f5f5ff;
    border-radius: 16px;
    margin: 30px auto;
}

.wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 66%;
    height: 100%;
    background-image: url("./img/login_bg_01.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12%;
    height: 33%;
    background-image: url("./img/login_bg_02.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.right-bar {
    position: absolute;
    right: -30px;
    top: 0px;
    width: 30px;
    height: 100%;
    background-color: transparent;
}

.bottom-bar {
    position: absolute;
    right: 0px;
    bottom: -30px;
    width: 100%;
    height: 30px;
    background-color: transparent;
}

.left,
.right {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
}

.left-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    width: 75%;
    height: auto;
}
.left-people{
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    width: 65%;
    height: auto;
}

.right-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    width: 55%;
    height: auto;
}

.right-logo {
    width: 280px;
    height:auto;
    margin-bottom: 20px;
}

.right-form {
    font-family: MicrosoftYaHei;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #404040;
}

.form-input {
    margin-bottom: 15px;
}

.form-label-block {
    display: block;
    margin-bottom: 10px;
}

.form-input input {
    max-width: 464px;
    height: 40px;
    width: 100%;
    padding: 16px 18px;
    box-sizing: border-box;
    background-color: #fff;
	box-shadow: 0px 2px 30px 0px 
		#ffedec;
	border-radius: 4px;
	border: solid 1px rgba(237, 68, 53, 0.3);
    outline: 0;
    font-family: MicrosoftYaHei;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #404040;

}

.form-input input:focus {
	box-shadow: 0px 2px 30px 0px 
		#ffedec;
	border-radius: 4px;
	border: solid 1px #ed4435;
}

.form-input input::placeholder{
    color: #b2b2b2;
}
.form-input input::-webkit-input-placeholder{
    color: #b2b2b2;
}
.form-input input::-ms-input-placeholder{
    color: #b2b2b2;
}
.form-input input:-ms-input-placeholder {
    color: #b2b2b2;
}
.form-input input::-moz-placeholder{
    color: #b2b2b2;
}
.form-input input:-moz-placeholder{
    color: #b2b2b2;
}


.mb30 {
    margin-bottom: 30px;
}

.form-input button {
    max-width: 464px;
    height: 46px;
    width: 100%;
    box-shadow: 0px 2px 30px 0px #f5f5ff;
    border-radius: 4px;
    outline: 0;
    background-color: rgba(89, 114, 240, 0.4);
    border: solid 1px #f5f5ff;
    font-family: MicrosoftYaHei;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #fff;
    cursor: pointer;
}

/*.form-input button:hover,*/
/*.form-input button:active,*/
.form-input button.active{
    outline: 0;
	background-color: #ed4435;
	box-shadow: 0px 2px 30px 0px 
		#f5f5ff;
	border-radius: 4px;
}


.form-group {
    max-width: 464px;
    width: 100%;
}

.verify-code {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    max-width: 139px;
    width: 100%;
    height: 40px;
    background-color: #eaeaea;
    box-shadow: 0px 2px 30px 0px #f5f5ff;
    border-radius: 4px;
    cursor: pointer;
}

.w313 {
    max-width: calc(100% - 149px) !important;
    width: 100% !important;
    vertical-align: middle;
}


/*媒体查询*/
@media screen and (max-width: 970px) {
    .right-logo {
        width: 200px;
        height:auto;
        margin-bottom: 20px;
    }
    .form-input button {
        height: 36px;
        font-size: 12px;
    }
    .form-input input {
        height: 30px;
        font-size: 12px;
        padding: 6px 8px;
    }
    .verify-code {
        height: 30px;
    }
    .mb30 {
        margin-bottom: 10px;
    }
    .form-input {
        margin-bottom: 10px;
    }
    .form-label-block {
        display: block;
        margin-bottom: 6px;
    }
    .right-form {
        font-size: 12px;
    }
    .verify-code{
        max-width: 80px;
    }
    .w313 {
        max-width: calc(100% - 99px) !important;
    }
}
@media screen and (min-width: 1600px) {
    .right-logo {
        width: 280px;
        height:auto;
        margin-bottom: 20px;
    }
    .form-input button {
        height: 56px;
    }
    .form-input input {
        height: 50px;
    }
    .verify-code {
        height: 50px;
    }
    .mb30 {
        margin-bottom: 40px;
    }
    .form-input {
        margin-bottom: 30px;
    }
    .form-label-block {
        display: block;
        margin-bottom: 15px;
    }
}

.x-form-invalid-msg{
    margin: 10px 0px 0px 25px;
}
div.x-form-invalid-msg,div.invalid_msg {
    font-weight: bold;
    color: #E90000;
    font-size: 12px;
    font-family: '宋体';
    position: absolute !important;
    left: 0px !important;
    top: 0px !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
}

body input.invalid {
    border-color: #ff6666;
    background: none;
    margin-bottom: 0;
}
