html,body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: #0099FF;
}
.logo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 100px;
	padding-top: 40px;
    background: white;
    max-width: 480px;
    width: 100%;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.logo img{
	height: 40px;
}
.logo div{
	text-align: center;
    margin-bottom: 30px;
    color: #787878;
    padding-top: 10px;
    font-size: 20px;
}
section{
    max-width: 480px;
    width: 100%;
}
.form{
    padding: 40px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    background: white;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.form .title{
	display: flex;
	margin-bottom: 25px;
	color: #0099FF;
	border-bottom: 1px solid #dcdfe6;
	font-size: 16px;
}
.form .title span{
	height: 40px;
	line-height: 40px;
}
.form .title span:first-child{
	border-bottom: 2px solid #0099FF;
}
.form .title span:last-child{
	color: #dd524d;
    font-size: 12px;
	flex: 1;
	text-align: right;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    color: #8d9095;
    font-size: 12px;
    line-height: 180%;
    color: white;
}
.input{
	border-radius: 4px;
	box-shadow: 0 0 0 1px #dcdfe6 inset;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	padding-left: 15px;
}
.input>img:last-child{
	flex-shrink: 0;
	height: 38px;
}
.input i{
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	margin-right: 7px;
}
.input i img{
	width: 100%;
	height: 100%;
}
input{
	background: transparent;
	border: none;
	outline: none;
	flex: 1;
	min-width: 0!important;
}
input:focus{
	outline: none;
}
button{
	border-radius: 500px;
	border: none;
	color: white;
	padding: 12px 0;
	text-align: center;
	display: block;
	background: #0099FF;
	font-size: 14px;
}
.login{
    margin: 25px auto;
    margin-top: 40px;
    display: flex;
    align-items: center;
    color: #979ca3;
    font-size: 14px;
}
.login i{
    display: block;
    border-top: 1px solid rgba(0,0,0,0.12);
    display: inline-block;
    width: 50px;
    margin: 0 5px;
}
.logins{
    display: flex;
    justify-content: center;
}
.logins .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 50px;
}
.logins img{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #3cb034;
	padding: 5px;
	margin-bottom: 10px;
}
.logins a{
    font-size: 12px;
    color: #979ca3;
    text-decoration: none;
}
.logins .item:first-child img{
	border-color: #e33820;
}
.input button{
	padding: 10px 30px;
	border-radius: 0!important;
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
}