﻿/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


html{

}

body{

	min-height: 600px;
  
	font:14px/1.3 'Segoe UI',Arial, sans-serif;
}

a, a:visited {
	text-decoration:none;
	outline:none;
	color:#54a6de;
}

a:hover{
	text-decoration:underline;
}

section, footer{
	display: block;
}


/*----------------------------
	Styling the forms
-----------------------------*/


#formContainer{
	width:365px;
	height:395px;
	float:right;
	position:relative;
	z-index:1;
	top:60px;
	-moz-perspective: 800px;
	-webkit-perspective: 800px;
	perspective: 800px;

}

#formContainer div#login, #formContainer div#recover{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	
	/* Enabling 3d space for the transforms */
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	
	/* When the forms are flipped, they will be hidden */
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
	/* Enabling a smooth animated transition */
	-moz-transition:0.8s;
	-webkit-transition:0.8s;
	transition:0.8s;
	
	/* Configure a keyframe animation for Firefox */
	-moz-animation: pulse 2s infinite;
	
	/* Configure it for Chrome and Safari */
	-webkit-animation: pulse 2s infinite;
}


/* Firefox Keyframe Animation */
@-moz-keyframes pulse{
	0%{		box-shadow:0 0 0px #008aff;}
	50%{	box-shadow:0 0 0px #008aff;}
	100%{	box-shadow:0 0 0px #008aff;}
}

/* Webkit keyframe animation */
@-webkit-keyframes pulse{
	0%{		box-shadow:0 0 0px #008aff;}
	50%{	box-shadow:0 0 0px #008aff;}
	100%{	box-shadow:0 0 0px #008aff;}
}

#login{
	background:url('/_layouts/EY.ComplianceMgr.Login/Styles/assets/img/login_form.png') no-repeat;
	z-index:100;
	height:395px;
}
#employeelogin{
	background:url('/_layouts/EY.ComplianceMgr.Login/Styles/assets/img/employeelogin.png') no-repeat;
	z-index:100;
	height:282px;
}
#recover{
	background:url('/_layouts/EY.ComplianceMgr.Login/Styles/assets/img/forget_back.png') no-repeat;
	z-index:1;
	opacity:0;
	
	height:395px;
	
	/* Rotating the recover password form by default */
	-moz-transform:rotateY(180deg);
	-webkit-transform:rotateY(180deg);
	transform:rotateY(180deg);
	
}

#formContainer.flipped #login{
	
	opacity:0;
	
	/**
	 * Rotating the login form when the
	 * flipped class is added to the container
	 */
	
	-moz-transform:rotateY(-180deg);
	-webkit-transform:rotateY(-180deg);
	transform:rotateY(-180deg);
}

#formContainer.flipped #recover{
	
	opacity:1;
	
	/* Rotating the recover div into view */
	-moz-transform:rotateY(0deg);
	-webkit-transform:rotateY(0deg);
	transform:rotateY(0deg);
}


/*----------------------------
	Inputs, Buttons & Links
-----------------------------*/


#login .flipLink,
#recover .flipLink{
	
	/* The blue ribbon links */
	left:45px
	height: 65px;
    overflow: hidden;
    position: absolute;
    right: 31px;
    text-indent: -9999px;
    top: 10px;
    width: 100px;
	height:50px
}

#recover .flipLink{
	right:auto;
	left:0;
}


input[type=text],input[type=password]{
	/* The text fields */
	font: 15px 'Segoe UI',Arial,sans-serif;
	border: none;
	background:none;
	height: 36px;
	left: 92px;
	position: absolute;
	top: 218px;
	width: 234px;
	text-indent: 8px;
	color:#999 !important;
	outline:none;
}

#txtPassword{
	top: 277px;
}
#lnkEmployee{
top:357px;
color:#000;
left:59px;
position:absolute;
font-weight:bold;
}
#txtEmail{
	top:253px;
}

input[type=submit]{
	
	/* Submit button */
	
	opacity:0.9;
	position:absolute;
	top:347px;
	left:229px;
	width: 99px;
	height:36px;
	cursor:pointer;
	border-radius:6px;
	box-shadow:0 1px 1px #888;
	border:none;
	color:#000;
	font:14px/36px 'Segoe UI Light','Segoe UI',Arial,sans-serif;
	
	/* CSS3 Gradients */
	
	background-image: linear-gradient(bottom, rgb(243,243,243) 50%, rgb(219,217,217) 50%, rgb(165,165,165) 100%);
	background-image: -o-linear-gradient(bottom, rgb(243,243,243) 50%, rgb(219,217,217) 50%, rgb(165,165,165) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(243,243,243) 50%, rgb(219,217,217) 50%, rgb(165,165,165) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(243,243,243) 50%, rgb(219,217,217) 50%, rgb(165,165,165) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(243,243,243) 50%, rgb(219,217,217) 50%, rgb(165,165,165) 100%);
	
	
}

input[type=submit]:hover{
	opacity:1;
}

input::-webkit-input-placeholder {
    color:#eee;
}


/*----------------------------
	The Footer
-----------------------------*/


footer{
	background-color: #111111;
	bottom: 0;
	box-shadow: 0 -1px 2px #111111;
	height: 45px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 100000;
}

footer h2{
	color: #EEEEEE;
	font-size: 14px;
	font-weight: normal;
	left: 50%;
	margin-left: -400px;
	padding: 13px 0 0;
	position: absolute;
	width: 540px;
}

footer h2 i{
	font-style:normal;
	color:#888;
}

footer a.tzine,a.tzine:visited{
	color: #999999;
	font-size: 12px;
	left: 50%;
	margin: 16px 0 0 110px;
	position: absolute;
	text-decoration: none;
	top: 0;
}

footer a i{
	color:#ccc;
	font-style: normal;
}

footer a i b{
	color:#c92020;
	font-weight: normal;
}
