@import url(fancyfonts.css);

body {
	font-family:tahoma,helvetica,sans-serif;
	margin:0px;
	background-repeat:repeat-x;
	background-color: #fff;
}

#topbar {
	background-image:url('../images/todyLogin.png');
	background-repeat:no-repeat;
	background-color: #403f3f;
	width: 100%;
	height: 63px;
}

#titlebar {
	font-family:'MyriadProCondensed';
	font-size: 36px;
	width: 100%;
	color: #403f3f;
	letter-spacing: -.4px;
}

.eztask {
	font-family:'MyriadProBoldCondensed';
	font-size: 36px;
	width: 100%;
	color: #403f3f;
	letter-spacing: -.8px;
}

.serverlabel { 
	color: #fff;
	font-size: 12px;
	text-align: right;
	padding: 25px 30px 0px 0px;
	letter-spacing: .8px;
}

#ezloginwrapper {
	border-radius:20px;
	background-color: #fff;
	margin: 200px auto;
	margin-top: 150px;
	width: 350px;
	height: 340px;
	border-left: 1px solid #fcfcfc;
	border-top: 1px solid #fcfcfc;
	box-shadow: 1px 2px 9px rgba(0,0,0,0.15);
}

#wrapperin {
	margin: 20px auto;
	width: 80%;
}

.inputwrapper {
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-top:20px;
	color: #333;
	font-size: 12px;
	letter-spacing: .1px;
	width:100%;
}

.inputwrapper2 {
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	font-size: 12px;
	letter-spacing: .1px;
	width:100%;
	margin-top: 8px;
}

#lblMessage{
	color:#bd0101;
}

.buttonwrapper {
	margin-top:30px;
	color: #ebebeb;
	font-size: 12px;
	letter-spacing: .1px;
	vertical-align: middle;
}

.forgot {
	color: #333;
	font-size: 12px;
	letter-spacing: .1px;
}

.loginbutton {cursor:pointer;
	font-family:'MyriadProCondensed';
	padding: 0px 10px 0px 10px;
	border: 0;
        margin-right: 4px;
	height: 40px;
	font-size: 24px;
	color: #fff;
	background-color: #bd0101;
	transition-property: background, border-radius;  
	transition-duration: .20s, .20s;
  	transition-timing-function: linear,ease-in;
}

.cancelbutton {cursor:pointer;
	font-family:'MyriadProCondensed';
	padding: 0px 10px 0px 10px;
	border: 0;
        margin-right: 4px;
	height: 40px;
	font-size: 24px;
	color: #fff;
	background-color: #ccc;
	transition-property: background, border-radius;  
	transition-duration: .20s, .20s;
  	transition-timing-function: linear,ease-in;
}

.loginbutton:hover, .cancelbutton:hover {
	border-radius: 10px;
	background-color:#006d00;
}

.t1 {	
	font-family: tahoma, sans-serif;
	font-size: 14px;
	width: 100%;
	height: 35px;
	border: 1px solid #ccc;
	margin-top: 2px;
	padding-left: 3px;
}



/* error shake animation */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-3px, 0, 0);
    transform: translate3d(-3px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(3px, 0, 0);
    transform: translate3d(3px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-3px, 0, 0);
    transform: translate3d(-3px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(3px, 0, 0);
    transform: translate3d(3px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}


/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "Login";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom, .hvr-bounce-to-bottom, .hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}