div{
	box-sizing: border-box;
}
body{
	outline: none;
	background: #eee;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	background: #3e3e3e;
	color: white;

}
.login-container{
	width: 250px;
	height: 250px;
	margin: auto auto;
	margin-top: calc(50vh - 250px);
}
.login-form{
	text-align: center;
}
.logo{
	background: white;
	padding: 15px;
}
.logo img{
	max-width: 100%;
}
.textinputs{
	display: block;
	width: 100%;
	margin-top: 15px;
	background: transparent;
	border: 0px;
	border-bottom: 1px solid #fff;
	outline: none;
	color: white;
	
}
.textinputs::placeholder{
	font-weight: 300;
	color: rgba(255,255,255,0.5);
}
label{
	display: block;
	margin-top: 15px;
}
a{
	font-size: 14px;
	color: white;
	margin-top: 30px;
}
a:hover{
	color: rgba(255,255,255,0.5);
}
button{
	background: rgba(0,0,0,0.1);
	display: block;
	margin-top: 15px;
	width: 100%;
	color: white;
	border: 0px;
	padding: 15px;
	outline: none;
}
button:focus{
	outline: none;
}
button:hover{
	background: rgba(0,0,0,0.2);
}
.passver{
	margin-top: 15px;	
	text-align: left;
	color: red;
	background: white;
	padding: 15px;
}
.passvertrue{
	color: green;
}