*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	height: 100%;
	width: 100%;
	/*background: url('../img/login.png') #ffffff;*/
}


h3{
	font-style: normal;
	font-size: 15px;
	padding-top: 20px;
	text-transform: uppercase;
}

h4{
	font-style: normal;
	font-size: 14px;
	text-transform: uppercase;}

div{
	width: 340px;
	height: 70px;
}

form{
	width: 100%;
	max-width: 400px;
	min-width: 400px;
	height: 500px;
	background: #ededed;
	padding: 30px;
	margin:auto;
	margin-top: 100px;
	border-radius: 4px;
	font-family: 'Roboto', sans-serif;
	box-shadow: 7px 13px 37px #000;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
}

form h2 {
	font-size: 25px;
	margin-bottom: 100px;
	text-align: center;
	text-transform: uppercase;
}


input {
	width: 100%;
	height: 40px;
	text-align: center;
	margin:10px 0;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #000000;
	transition: .5s;
}

input[type="submit"]{
	background: #000000;
	color: #ffffff;
	width: 70%;
	height: 40px;
	border-radius: 4px;
	border-color: #000000;
	text-transform: uppercase;

}

label{
	width: 0px;
	height: 0px;
	position: relative;
	top:-40px;
	left: 0px;
	color: #424242;
	font-size: 18PX;
	transition: .5s;
	padding: 0;
	margin: 0;
	opacity: .8;
}


input:focus ~ label,
input:valid ~ label{
	top: -70px;
	left: 0px;
	font-size: 14px;
	opacity: .4;
}

input[type="text"]:hover{
	border: 2px solid #0984CC;
}

input[type="text"]:focus{
	border: 2px solid #0984CC;
}

input[type="text"]:valid{
	border: 2px solid #0984CC;
}

input[type="password"]:hover{
	border: 2px solid #0984CC;
}

input[type="password"]:focus{
	border: 2px solid #0984CC;
}

input[type="password"]:valid{
	border: 2px solid #0984CC;
}
