@charset "utf-8";

html, body{ height:100%;}
body{font-size:14px}


#containerWrap{
    position: relative;
    width: 100%;
    height:100%;
    background: url('../img/bg.png') no-repeat;
    background-size: 100% 100%;
}

.loginContianer{
    position: absolute;
    width: 1000px;
    height: 500px;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -500px;
    border-radius: 5px;
    overflow: hidden;
}

.loginLeftImg{
    float: left;
    width: 50%;
    height: 100%;
}

.loginLeftImg img{
    display: inline-block;
    width: 100%;
    height: 100%;
}

.loginWrap{
    float: left;
    width: 50%;
    height: 100%;
    background: #fff;
}

.formWrap{
    padding-bottom: 30px;
    width: 100%;
    overflow: hidden;
}

.form-row-logo{
    margin: 30px auto 0 auto;
    padding-bottom: 20px;
    text-align: center;
}

.form-row-logo img{
    width:216px;
    height: 38px;
}

.formContainer{
    margin: 20px auto;
    width: 360px;
}

.formContainer .form-row{
    position: relative;
    margin: 24px auto 0 auto;
    width:100%;
}

.formContainer .input-row{
    width:100%;
    height:40px;
    background:#fff;
    border: none;
    border-bottom:1px solid #ccc;
    text-align: left;
    text-indent: 60px;
    font-size: 16px;
    color: #666;
}

/* 输入框中placeholer文字颜色 */
.formContainer .form-row input::-webkit-input-placeholder{ /* WebKit browsers */
    font-size:15px;
    font-weight:400;
    color:#999;
}
.formContainer .form-row input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
    font-size:15px;
    font-weight:400;
    color:#999;
}
.formContainer .form-row input::-moz-placeholder{ /* Mozilla Firefox 19+ */
    font-size:15px;
    font-weight:400;
    color:#999;
}
.formContainer .form-row input:-ms-input-placeholder{ /* Internet Explorer 10+ */
    font-size:15px;
    font-weight:400;
    color:#999;
}

.formContainer .input-img{
    position: absolute;
    display: block;
    width: 35px;
    top: 10px;
    left: 10px;
    border-right: 1px solid #ccc;
}

.formContainer .input-img i{
    width: 20px;
    height: 20px;
    font-size: 18px;
    color: #999;
}

.formContainer .form-row-btn{
    margin: 40px auto 0 auto;
    width: 100%;
}

.formContainer .submit{
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    letter-spacing: 2px;
    background: #637DF6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.formContainer .getCode{
    position: absolute;
    top: 2px;
    right: 5px;
    display: inline-block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    background: #637DF6;
    color: #fff;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.formContainer .retLogin{
    margin-top: 5px;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: #666;
    /* text-decoration: underline; */
    text-align: center;
}