.login_box{
    position: fixed;
    z-index: 99999;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 60px);
    max-width: 420px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 5px #ddd;
    text-align: center;
}
.login_title{
    font-size: 28px;
    font-weight: bold;
    color: #f66;
}
#login_form div{
	margin: 25px 0;
}
#login_form label{
    width: 80px;
    display: inline-block;
    text-align: right;
}
#login_form input{
	outline: none;
	border: none;
	border-radius: 4px;
}
#login_form .input{
	height: 32px;
	width: 65%;
	border: solid 1px #ccc;
	padding: 0 5px;
}
#login_form input[type=button]{
	height: 40px;
	width: 90%;
	background: #f66;
    color: #fff;
}
#login_form input[type=button]:active{
    background: #d44;
    color: #ddd;
}
#login_form input[type=button]:disabled{
    cursor: wait;
    background: #f66;
    color: #fff;
}
#login_form .below{
	height: 36px;
	padding: 0 25px;
	line-height: 36px;
}