html,body{
	font-family: 'Lato', sans-serif;
}
div{
	box-sizing: border-box;
}
body{
	outline: none;
	background: #eee;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	background: #6ac6db;
	color: black;

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