* {
    outline: none;
    margin: 0;
    padding: 0;
}

html,body{
    width: 100%;
    height: 100%;
}
.loginBody{
    display: flex;
    width: 100%;
    height: 100%;
	 background: linear-gradient(to bottom, #032048,#5d8585);
}
.login-left{
    flex: 1;
    background: linear-gradient(to bottom, #032048,#5d8585);
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}
.login-right{
    width: 560px;
    padding: 0 10px;
    box-sizing: border-box;
    background: #0C0C0C;
    height: 100%;
    position: relative;
}
.login-form{
    margin: 0 auto;
    position: absolute;
    top:10%;
    left: 10px;
    right: 10px;
}
.login-name{
	    font-size: 60px;
	    position: relative;
	    top: -70px;
		color:#fff;
		line-height: 60px;
}
.login-ipt{
    border:1px solid #aec2d8;
    height: 40px;
    line-height: 40px;
    padding: 0 14px 0 8px;
    border-radius: 5px;
    display: block;
    width: 60%;
    box-sizing: border-box;
    color:#333;
    font-size:20px;
    background: #ccc;
    user-focus: none;
    user-select: none;
	margin: 0 auto;
    margin-bottom: 15px;
}
.login_btn{
	    border:1px solid #0055ff;
	    height: 40px;
	    line-height: 40px;
	    padding: 0 14px 0 8px;
	    border-radius: 5px;
	    display: block;
	    width: 60%;
	    box-sizing: border-box;
	    color:#fff;
	    font-size:20px;
	    background: #0055ff;
	    user-focus: none;
	    user-select: none;
		margin: 0 auto;
	    margin-bottom: 15px;
}
input:focus{
    outline: none;
}











.loginMenu{
    display: flex;
}
.loginMenu .loginMenu-item:nth-child(odd){
    margin-right: 20px;

}
.loginMenu-item{
    width: 200px;
    height: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color:#fff;
    cursor: pointer;
}
.loginMenu-item .layui-icon{
    font-size: 30px;
}
.loginMenu-item .name{
    font-size: 22px;
    line-height: 22px;
    margin-top: 15px;
}