body, p, div, input, img {
	box-sizing: border-box;
}


body {
	position: absolute;
	font-family: verdana, arial, serif;
	font-size: 13px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

#login-form {
	border: 2px solid #4792FF;
	text-align: center;
	padding: 20px 0 10px;
	box-shadow: 0.5em 0.5em 5px rgba(22,22,22,0.7);
	box-sizing: border-box;
	border-radius: 20px;
	width: 100%;
	height: auto;
	margin: 12px;
}

#login-form img {
	width: 96px;
	height: 96px;
}

#login-form input,
#login-form button {
	height: 40px;
	font-size: 16px;
	border-radius: 6px;
	margin-bottom: 15px;
}

#login-form input[type="text"],
#login-form input[type="password"] {
	width: 280px;
	padding: 5px;
}

#login-form button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	border: 2px solid rgb(5, 114, 19);
	color: #fff;
	background-color: rgb(9, 153, 28);
	transition: all ease .7s;
}

#login-form button:hover {
	background-color: rgb(5, 116, 20);
}

#login-form .container {
	display: flex;
	justify-content: center;
}

#login-form p {
	font-size: 16px;
	padding: 10px;
	text-align: center;
}

#login-form p.msg_red {
	color: #FF0D0D;
}

@media screen and (min-width: 500px) {
	body {
		align-items: center;
	}
	
	#login-form {
		width: 480px;
	}

	#login-form img {
		width: 128px;
		height: 128px;
	}
}