

dd {
	margin: 0px;
/*	margin-bottom: 20px;*/
}

#auth_form {
	width: 30%;
	padding: 20px;
	background: #364157;
	border: 1px solid #CCCCCC;
	border-radius: 10px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	
	top: 70%;
	transition: all 1s;
	opacity: 0;
}

#auth_form.show {
	top: 50%;
	opacity: 1;
}

input {
/*	width: 100%;*/
	display: block;
	width: 70%;
	padding: 15px 10px;
	margin: 10px auto;
	margin-bottom: 10px;
	
	font-size: 18px;
	border: 1px solid #DDDDDD;
	transition: border-width 0.2s ease;
	border-radius: 2px;
	color: #CCCCCC;
}

input + i.fa {
	color: #fff;
	font-size: 1em;
	position: absolute;
	margin-top: -47px;
	opacity: 0;
	left: 0;
	left: 40px;
	transition: all 0.1s ease-in;
}

input:focus {
	outline: none;
	color: #444444;
	border-color: #2196F3;
	border-left-width: 35px;
}

input:focus + i.fa {
	opacity: 1;
/*	left: 30px;*/
	left: 60px;
	transition: all 0.25s ease-out;
}

.button {
/*
	width: 50%;
	height: 35px;
	border-radius: 10px;
*/
	
	width: 100%;
	height: 100%;
	padding: 10px 10px;
	background: #2196F3;
	color: #fff;
	display: block;
	border: none;
	margin-top: 20px;
	margin-bottom: 0px;
	position: absolute;
	left: 0;
	bottom: 0;
	max-height: 60px;
	border: 0px solid rgba(0, 0, 0, 0.1);
	border-radius: 0 0 2px 2px;
	transform: rotateZ(0deg);
	transition: all 0.1s ease-out;
	border-bottom-width: 7px;
	cursor: pointer;
}

.bottom {
	margin-bottom: 60px;
}



@media screen and (max-width: 1024px) {

	#auth_form {
		width: 80%;
	}
	
	input:focus + i.fa {
		left: 50px;
	}
}