@import url(normalize.css);
/*MEDIA*/
*, *:before, *:after {
	box-sizing:border-box;
/*	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;*/      /* IE 10+ */
	/* this will work for QtWebKit in future */
	-webkit-user-drag: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent; /* For some Androids */
}
body, html{
	padding:0;
	margin:0;
	height:100%;
	min-height:100%;
	width:100%;
	min-width:320px;
}
body{
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-family: 'Open Sans', sans-serif;
}
form{
	width:320px;
	position:fixed;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	    -ms-transform:translate(-50%,-50%);
	        transform:translate(-50%,-50%);
	color:#666;
	text-transform:uppercase;
	font-size:18px;
}
label{
	line-height:20px;
}
input{
	width:100%;
	background-color:#FFF;
	text-align:center;
	outline:none;
	line-height:38px;
	height:40px;
	border:1px solid #666;
	outline:none;
	font-size:18px;
	margin-bottom:20px;
}

input[type="password"]{
	margin-bottom:40px;
}
input[type="submit"]{
	width:100%;
	background-color:#666;
	color:#FFF;
	border:none;
	text-transform:uppercase;
}
input[type="submit"]:hover { 
    background-color: #D6D6D6;
}
input:focus { 
    background-color: #D6D6D6;
}
p{
	position:absolute;
	top:100%;
	width:100%;
	text-align:center;
	font-weight:800;
}
/* ALL */
.wrapper{
	position:relative;
	width:100% !important;
	height:100% !important;
}

.clear:after{
	content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}