login.css 1.5 KB
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	background-image: url(bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
}
.box{
	background-color: #fff;
	width: 25%;
	margin: 6%;
	border-radius: 4px;
}
.box .top{
	padding: 60px;
}
.box .top h3{
	/*border-bottom: 3px solid #2864fa;*/
	    padding: 6px 0;
	       /*width: 17%;*/
	       font-size: 25px;
	       letter-spacing: 2px;
}
.summary{
	margin: 20px 0;
}
.summary h4{
	color: #2864FA;
}
.summary p{
	font-size: 12px;
	color: #A9A9A9;
	font-variant:small-caps;
	letter-spacing: -1px;
	line-height: 11px;
}
.form p{
	border-bottom: 2px solid #eee;
	line-height: 88px;
	height: 65px;
	margin-top: 18px;
	
}
.form p span{
	color: #2864FA;
	font-size: 14px;
	font-weight: 600;
}
.form p input{
	width: 60%;
	padding: 8px;
	border: 0;
	outline: none;
}
.form .check{
	border-bottom: 0;
	height: 35px;
	line-height: 35px;
}
.btn{
	    width: 100%;
	    padding: 12px;
	    border: #2864FA;
	    background-color: #2864FA;
	    outline: #2864FA;
	    color: #fff;
	    font-size: 20px;
	    font-weight: 600;
	    letter-spacing: 4px;
}
.form .check {
	justify-content: flex-end;
	display: flex;
	align-items: center;
}
.form .check input{
	width: 22px;
	height: 22px;
	margin-left: 12px;
	margin-right: 8px;
}
.tips{
	font-size:xx-small;
	color: #a9a9a9;
	text-align: center;
	line-height: 28px;
	/* letter-spacing: -1px; */
	position: fixed;
	bottom: 30px;
	width: 100%;
}