body {
	font-family: 'Roboto', sans-serif;
	padding: 0;
	margin: 0;
}
p {
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 25px;
	color: #000;
	margin: 0 0 15px;
}
a, a:hover {
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	text-decoration: none;
	cursor: pointer;
}
a, a:focus, a:hover, button, button:focus, button:hover, checkbox, checkbox:focus, checkbox:hover, input, input:focus, input:hover, select, select:focus, select:hover {
	outline: 0;
}
.login-page {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Roboto', sans-serif;
}
.login-form {
	width: 500px;
	text-align: center;
	margin: 0 auto;
}
.login-form h4 {
	font-size: 25px;
}
.login-form h2 {
	margin: 20px 0;
	font-size: 35px;
}
.login-form input {
	padding: 10px 15px;
	width: 350px;
	border: 1.5px solid #566167;
	margin: 0 auto;
}
.login-form input[type="submit"] {
	padding: 5px 25px;
	width: auto;
	background: #0078bd;
	color: #fff;
	border: none;
	font-size: 20px;
	margin: 20px auto 0;
}
.login-form input[type=submit]:hover {
	background: #566167;
}
.email input {
	background: url(../images/user-icon.png) no-repeat;
	background-position: 5px center;
	padding: 10px 15px 10px 40px;
	margin-bottom: 15px;
}
.pass input {
	background: url(../images/pass-icon.png) no-repeat;
	background-position: 5px center;
	padding: 10px 15px 10px 40px;
}
.forgot {
	text-align: right;
	width: 350px;
	margin: 0 auto;
}
.forgot a {
	color: #566167;
}
/**************media starts****************/
@media only screen and (min-width: 320px) and (max-width: 767px) {
.login-form {
	width: 90%;
	text-align: center;
	margin: 0 auto;
}
.login-form input {
	width: 100%;
}
.forgot {
	text-align: right;
	width: 100%;
}
}
