﻿﻿*{
    margin: 0;
    padding: 0;
}
body{
    margin: 0 !important;
    padding: 0 !important;
}
.logo{
    width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}
.logo img{
    width: 500px;
}
.content{
    width: 100%;
    position: relative;
    margin-top: 20px;
}
.content img{
    width: 100%;
}
.loginForm{
    width: 396px;
    height: 360px;
    background: url("../images/loginbg.png");
    background-size: cover;
    position: absolute;
    top: -24px;
    right: 10%;
}
.loginForm form{
    margin-top: 70px;
}
.loginForm h2{
    text-align: center;
    color: #4e7dc5;
    font-size: 20px;
    margin-top: 36px;
    font-weight: normal;
}
.input>input{
    display: block;
    outline: none;
    border: 1px solid #a2a2a2;
    background: #ffffff;
    width: 280px;
    margin: 0 auto;
    height: 50px;
    margin-top: 20px;
    border-radius: 5px;
    padding-left: 20px;
    background: url("../images/user.png") no-repeat;
    background-position: 270px 15px;
}
.input>input:nth-of-type(2){
    background: url("../images/pass.png") no-repeat;
    background-position: 270px 15px;
}
.login{
    width: 300px;
    margin: 0 auto;
    margin-top: 35px;
}
.remember{
    display: none;
}
.remember + label{
    display: inline-block;
    width: 15px;
    height: 14px;
    background: url("../images/uncheck.png");
    background-size: cover;
    margin-top: 14px;
    float: left;
}
.remember:checked + label{
    display: inline-block;
    width: 15px;
    height: 14px;
    background: url("../images/checked.png");
    background-size: cover;
}
.login p{
    color: #727272;
    font-size: 15px;
    margin-left: 7px;
    display: block;
    float: left;
    margin-top: 11px;
}
.loginBtn{
    border-radius: 5px;
    width: 130px;
    height: 40px;
    color: #ffffff;
    text-align: center;
    background: #262626;
    float: right;
}
.copyright{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #a2a2a2;
}