body{
    margin: 0;
    background:
      radial-gradient(circle at 50% 0,
        rgba(255,232,216,.4),
        rgba(255,232,216,0) 70.71%),
      radial-gradient(circle at 6.7% 75%,
        rgba(216,255,216,.4),
        rgba(216,255,216,0) 70.71%),
      radial-gradient(circle at 93.3% 75%,
        rgba(216,232,255,.4),
        rgba(216,232,255,0) 70.71%) #fff;
    background-attachment: fixed;
}
.login_box{
    width: calc(100% - 60px);
    max-width: 420px;
    margin: 5vw auto;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 0px 5px #ccc;
    text-align: center;
}
.title{
    font-size: 28px;
    font-weight: bold;
    color: #0af;
}
#form div{
	margin: 20px 0;
}
label{
    width: 80px;
    display: inline-block;
    text-align: right;
}
input{
	outline: none;
	border: none;
	border-radius: 4px;
}
.input{
	height: 32px;
	width: 65%;
	border: solid 1px #ccc;
	padding: 0 5px;
}
input[type=button]{
	height: 40px;
	width: 90%;
	background: #0cf;
    color: #fff;
}
input[type=button]:active{
    background: #0af;
    color: #ddd;
}
.below{
	height: 36px;
	padding: 0 25px;
	line-height: 36px;
}
a{
	text-decoration: none;
	color: #0af;
}