html, body, html *, body *{
}

form {
    margin-bottom: 0em;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 6px;
    font-weight: 700;
    color: #757575;
    font-size: 12px;
}

h2{
	font-size: 40px;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
	line-height: 0.4;
	text-align: center;
	letter-spacing: 1.0px;
	margin-bottom: 10px;
}

h4{
	font-size: 19px;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
	font-weight: normal;
	margin: 10px 0;
	text-align: center;
	text-transform: uppercase;
}

.button-wrapper{
	padding: 10px 8px;
	color: rgba(114, 64, 64, 0);
	font-size: 18px;
	text-align: center;
}

.button-wrapper a{
	color: rgb(255, 255, 255);
	font-size: 12px;
	text-decoration: none;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
}

.button-wrapper a:hover{
	color: rgba(255, 255, 255, 0.7);
}

.login-btn{
	cursor: pointer;
	background: #f09116;
	color: #fff;
	padding: 10px;
	font-weight: 600;
	text-shadow: none;
	border-radius: 25px;
	padding-left: 35px;
	padding-right: 35px;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.27);
	font-size: 15px;
	letter-spacing: 1px;
}

.login-wrapper{
	width: 400px;
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%);
	perspective: 500px;
}

.login-btn:hover {
    cursor: pointer;
    background: #e58c19;
    color: #fff;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.21);
    font-size: 15px;
    letter-spacing: 1px;
}

.x-wrapper{
	width: 100%;
	transform: rotateX(0deg);
	perspective: 500px;
}

.y-wrapper{
	width: 100%;
	transform: rotateY(0deg);
}

.input-box{
	border-radius: 2px;
	position: relative;
	padding: 30px 30px;
	border: 1px solid rgba(221, 221, 221, 0.8);
	box-shadow: 0 5px 11px rgba(0, 0, 0, 0.2);
	background: #fff;
}

.input-box input{
	width: 100%;
	background: rgb(255, 255, 255);
	font-size: 16px;
	padding: 8px 12px;
	color: rgba(48, 48, 48, 0.8);
	border: 1px solid #dbd6d6;
	outline: none;
	border-radius: 2px;
	margin-bottom: 10px;
}

.input-box input:first-child{
	margin-bottom: 12px;
}

.input-box .show-pass{
	right: 60px;
	font-size: 21px;
	bottom: 33px;
	text-shadow: 0 0 3px #fff;
	cursor: pointer;
	color: rgba(0, 0, 0, 0.2);
	position: absolute;
}

.input-box .show-pass.showing{
	color: rgba(0, 0, 0, 0.7);
}


.bg-grad{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 5s linear;
	transition: opacity 5s linear;
	background: #f17009;
}

.bg-grad.active{
	opacity: 1;
}

.bg-grad.orange{
	background: url(../img/logo-before.html) center top no-repeat, url(../img/header-bg.jpg) center top no-repeat;
	background-size: cover;
}