*{
	font-family: Georgia;
	color: #333;
}
body{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
}
.login{
	width: 50%;
	margin: auto;
	margin-top: 130px;
	background: rgba(51,153,255,0.8);
	color: #fff;
	text-align: center;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(192,192,192,0.3);
	-o-box-shadow: 0px 0px 10px 0px rgba(192,192,192,0.3);
	-ms-box-shadow: 0px 0px 10px 0px rgba(192,192,192,0.3);
	box-shadow: 0px 0px 10px 0px rgba(192,192,192,0.3);
	-webkit-border-radius:5px;
	-o-border-radius:5px;
	-ms-border-radius:5px;
	border-radius:5px;
	cursor: pointer;

}
.login .logo span h1{
	color: #fff;
	font-family: candara;
}

.inpts{
	width: 70%;
	padding: 15px;
	font-family: candara;
	border: none;
}

.btn_login{
			background: #fff;
			color: #666;
			margin-bottom: 20px;
			margin-left: 5px;
			border-radius: 5px;
			border: none;
			padding: 10px 25px;
		}