*, *:after, *:before {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	background: #95a5a6;
/*	font-family: 'Helvetica Neue', Arial, Sans-Serif; */
	font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
}  

.login-wrap {
	position: relative;
	margin: 0 auto;
	background: #ecf0f1;
	max-width: 320px;
	border-radius: 5px;
	box-shadow: 3px 3px 10px #333;
	padding: 10px;
	margin-top: 50px;
}    
h2 {
	text-align: center;
	font-weight: normal;
	font-size: 1.4em;
	margin-top: .5em;
	color: #34495e;
}

.form {
	padding-top: 20px;
}      
input[type="text"], input[type="password"], button {
	width: 80%;
	margin-left: 10%;
	margin-bottom: 25px;
	height: 40px;
	border-radius: 5px;
	outline: 0;
	-moz-outline-style: none;
}

input[type="text"], input[type="password"] {
	border: 1px solid #bbb;
	padding: 0 0 0 10px;
	font-size: 1.1em;
}

&:focus {
	border: 1px solid #3498db;
}
&:hover {
/*	box-shadow: 1px 1px 5px #555;  */
}
&:active {
/*	box-shadow: 1px 1px 7px #222;  */
}

a {
	text-align: center;
	font-size: .7em;
	color: #3498db;
}

button {
/*	background: #e74c3c; */
	background: #608D60;
	border:none;
	color: white;
	font-size: 1em;
/*	font-weight: 200; */
	cursor: pointer;
}
p {
	text-align: center;
	color: #fff;
	background-color: #f00;
	font-weight: bold;
	margin-bottom: 1em;
}
       

@media only screen and (max-width: 400px) {
	html {
		background: #ecf0f1;
	}  
	.login-wrap {
		max-width: 100%;
		min-width: 220px;
		border-radius: 0; 
		box-shadow: none;
		margin-top: 0;
	}    

	h2 {
		font-size: 1.2em;
	}
}