﻿@charset "utf-8";
/* CSS Document */

.full-body{ height:100%; overflow:hidden;}
body { background:url(../images/bg.jpg) no-repeat center top fixed; background-size:100% 100%; position:relative;}
.login-bg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%,-50%);
}

.login-box {
    width: 460px;
    height: 420px;
    overflow: hidden;
    background: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 0 20px 0 #aaa;
    -webkit-box-shadow: 0 0 20px 0 #aaa;
    box-shadow: 0 0 20px 0 #aaa;
}

.login-box h2{ padding:50px 0 30px; font-size:30px; color:#f60; text-align:center;}
.login-form { padding:0 30px;}
.login-form ul{ overflow:hidden;}
.login-form ul li { position:relative; margin-bottom:20px; overflow:hidden;}
.login-form ul li i { font-size:22px; position:absolute; left:12px; top:12px; color:#f60; z-index:100;}
.login-form ul li .login-input { width:257px; border:1px solid #ddd; position:relative; line-height:45px; height:45px; padding-left:40px; float:left;}
.login-form ul li .login-input:focus{ border-color:#99CEFD;}
    .login-form ul li .layui-btn-danger {
        width: 100%;
        font-size: 20px;
        height: 45px;
        line-height: 45px;
        margin-top: 20px;
        background-color: #99CEFD
    }

.captcha {
    position: absolute;
    right: 1px;
    top: 1px;
    border-left: 1px solid #e6e6e6;
}
@media screen and (max-width: 375px) {
.login-box h2{ font-size:26px;}
.login-box{ width:94%; left:3%; margin-left:0;}
.login-form ul li .login-input{ width:calc(100% - 1px); box-sizing:border-box;}
}