login.css 3.0 KB
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	background-image: url(bg.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
}
.mask{
	height: 100%;
	width: 100%;
	background: rgb(51 51 51 / 53%);
	position: fixed;
}
.conbox{
	/* width: 90%; */
	/* margin: auto; */
	display: flex;
	align-items: center;
	height: 100%;
}
.conbox .left{
	    width: 67%;
	    color: #fff;
	    font-size: 36px;
	    /* font-weight: 600; */
	    line-height: 50px;
		letter-spacing: 4px;
		padding: 10%;
}
.conbox .right{
	width: 33%;
	background-color: #333;
	height: 100%;
}
.right .top{
	display: flex;
	align-items: center;
	padding: 20px 0;
}
.right .top img{
	height: 80px;
	width: 80px;
	background-color: #fff;
	border-radius: 50%;
	padding: 10px;
}
.right .top h3{
	color: #fff;
	font-size: 36px;
	letter-spacing: 4px;
	margin-left: 16px;
	
}
.right .top h4{
	display: none;
}
.box{
	width: 80%;
	margin:20% auto 0;
}
.form{
	margin-top: 5%;
}
.form input{
	display: block;
	width: 100%;
	padding: 10px;
	height: 55px;
	line-height: 55px;
	margin-top:3rem;
	background-color: #333;
	border: 1px solid #fff;
	color: #fff;
	font-size: 12px;
	border-radius: 4px;
	outline: none;
}

.form .check{
	border-bottom: 0;
	display: flex;
	    justify-content: end;
	    margin-top: 2rem;
		color: #eee;
}
.btn{
	    width: 100%;
	    padding: 12px;
	    border: #2864FA;
	    background-color: #2864FA;
	    outline: #2864FA;
	    color: #fff;
	    font-size: 20px;
	    font-weight: 600;
	    letter-spacing: 4px;
		margin-top: 80px;
}

.form .check input{
	height: 22px;
	width: 22px;
	display: inline-block;
	margin-top: 0;
	margin-left: 36px;
	    margin-right: 8px;
}
.tips{
	font-size:xx-small;
	color: #a9a9a9;
	text-align: center;
	line-height: 28px;
	/* position: fixed; */
	position: relative;
top: 3rem;
	
}
input::-webkit-input-placeholder{
        color:#fff;
    }
    input::-moz-placeholder{   /* Mozilla Firefox 19+ */
        color:#fff;
    }
    input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
        color:#fff;
    }
    input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
        color:#fff;
    }
@media screen and (max-width: 1200px) {
	.box{
		margin: 10% auto 0;
	}
	.conbox .left{
		display: none;
	}
	.conbox .right{
		width: 100%;
		background: none;
	}
	.right .top h3{
		display: none;
	}
	.right .top h4{
		display: block;
		color: #fff;
		margin-top: 8px;
		font-weight: 500;
	}
	.right .top img{
		width: 60px;
		height: 60px;
	}
	.right .top{
		display: block;
	}
	.form input
	{
		background: none;
		    color: #fff;
		    border-bottom: 1px solid #fff;
		    border-top: 0;
		    border-left: 0;
		    border-radius: 0;
		    border-right: 0;
	}
.form .check{
	font-size: 12px;
}
.form .check input {
    height: 16px;
    width: 16px;
   
    margin-left: 16px;
    margin-right: 4px;
}
.form input{
	    height: 35px;
	    line-height: 35px;
	    margin-top: 2rem;
}
.btn{
	margin-top: 3rem;
	font-size:14px;
	padding:10px
}
.tips{
	font-size: xx-small;
	    letter-spacing: -1px;
}


}