/* 登录注册基础样式 */
.m-login {
    width: 550px;
    min-height: 150px;
    margin: 50px auto 0;
    padding: 40px;
    color: #000;
}
/* 云-动画 */
.m-login .header {
    position: relative;
    height: 130px;
    background-color: #FF588F;
}
.m-login .header .cloud_s,
.m-login .header .cloud_m {
    position: absolute;
}
.m-login .header .cloud_m {
    right: 0px;
    animation: cloud_m 8s infinite linear;
}
.m-login .header .cloud_s {
    top: 60px;
    right: 150px;
    animation: cloud_s 8s infinite linear;
}
@keyframes cloud_m {
    0% {
        transform: translateX(0px);
    }
    20% {
        transform: translateX(0px);
    }
    40% {
        transform: translateX(60px);
    }
    60% {
        transform: translateX(60px);
    }
    80% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes cloud_s {
    0% {
        transform: translateX(0px);
    }
    20% {
        transform: translateX(0px);
    }
    40% {
        transform: translateX(-50px);
    }
    60% {
        transform: translateX(-50px);
    }
    80% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(0px);
    }
}
/* 登录表单样式 */
.m-login .loginForm,
.m-login .registerForm {
    display: flex;
    flex-direction: column;
    margin-bottom: 85px;
    padding: 40px 40px 40px 25px;
    background-color: #f0f0f0;
}
/* input样式 */
.m-login input[type="text"],
.m-login input[type="password"] {
    width: 100%;
    height: 30px;
    margin: 10px auto;
    padding: 6px 10px;
    border: none;
    font: 20px/32px "微软雅黑","宋体",Arial;
}
.m-login input[type=checkbox] {
    display: none;
}
.m-login input[type="checkbox"]:checked + .checkbox:before {
    content: '\2714';
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    background-color: #FF588F;
}
.m-login .checkbox:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
    border: #dddddd solid 1px;
    color: #F0F0F0;
    background: #f0f0f0;
    text-align: center;
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);
    border-radius: 3px;
}
.m-login div.input,
.m-login div.footer {
    margin: 10px 0;
    font-size: 16px;
}
.m-login div.input a {
    color: #555;
}
.m-login div.input a:hover {
    color: #FF598F;
}
.m-login div.field {
    display: flex;
    width: 104%;
}
.m-login div.field input {
    flex: 1;
}
.m-login div.field .field-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: 100px;
    color: #fff;
    background-color: #FF598F;
    background-clip:content-box;
    cursor: pointer;
}
.m-login .input label {
    line-height: 18px;
    margin-right: 20px;
    color: #333;
}
.m-login .checkbox {
    position: relative;
    margin-top: 0px;
}
.m-login .footer {
    display: flex;
    justify-content: space-around;
}
.m-login .registor_now {
    padding-right: 24px;
    margin: 10px 0 0 0;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    background: url(http://vipimg.xiaomei.net.cn/public/style/index/img/registor_now.png) right center no-repeat;
}
.registor_now a:link {
    color: #FF588F;
}
.registor_now a:visited {
    color: #FF588F;
}
#submitLogin {
    width: 155px;
    height: 46px;
    font-size: 16px;
    line-height: 46px;
    clear: both;
    float: left;
    background: #ff588f;
    color: #fff;
    border: none;
    text-align: center;
}