﻿/* Stylesheet */


/* Imports */

@import url(animate.css);

/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

/* Basics */

html, body {
	/*width: 100%;
	height: 100%;*/
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	color: #444;
	-webkit-font-smoothing: antialiased;
	background: #f0f0f0;
	
}

#container {
	position: fixed;
	width: 360px;
	height: n-0px;
	top: 50%;
	left: 50%;
	margin-top: -140px;
	margin-left: -180px;
	background: #fff;
	border-radius: 3px;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-animation-name: bounceIn;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: bounceIn;
	-moz-animation-fill-mode: both;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: linear;
	animation-name: bounceIn;
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
}

form {
	margin: 0 auto;
	margin-top: 20px;
}

label {
	color: #555;
	display: inline-block;
	margin-left: 18px;
	padding-top: 10px;
	font-size: 14px;
}

p a {
	font-size: 11px;
	color: #aaa;
	float: right;
	margin-top: -13px;
	margin-right: 20px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

p a:hover {
	color: #555;
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 12px;
	outline: none;
}

input[type=name],
input[type=password] {
	color: #777;
	padding-left: 10px;
	margin: 10px;
	margin-top: 12px;
	margin-left: 18px;
	width: 290px;
	height: 35px;
	border: 1px solid #c7d0d2;
	border-radius: 2px;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

input[type=name]:hover,
input[type=password]:hover {
	border: 1px solid #b6bfc0;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #f5f7f8;
}

input[type=name]:focus,
input[type=password]:focus {
	border: 1px solid #a8c9e4;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
}

#lower {
	background: #ecf2f5;
	width: 100%;
	height: 69px;
	margin-top: 10px;
	box-shadow: inset 0 1px 1px #fff;
	border-top: 1px solid #ccc;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

#lower a {
    margin-left: 20px;
	/*margin-top: 30px;*/

    color: #555;
	display: inline-block;
	margin-left: 18px;
	padding-top: 10px;
	font-size: 12px;
}

input[type=checkbox] {
	margin-left: 20px;
	margin-top: 10px;
}

.check {
	margin-left: 3px;
	font-size: 11px;
	color: #444;
	text-shadow: 0 1px 0 #fff;
}



/* ------------------------------------------------------------------ */

input[type=submit]
{
    /*float: right;*/
	margin-right: 20px;
	margin-top: 20px;
	/*width: 80px;
	height: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;*/


    background: rgb(173,173,173); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(173,173,173,1) 0%, rgba(35,35,35,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(173,173,173,1)), color-stop(100%,rgba(35,35,35,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(173,173,173,1) 0%,rgba(35,35,35,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(173,173,173,1) 0%,rgba(35,35,35,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(173,173,173,1) 0%,rgba(35,35,35,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(173,173,173,1) 0%,rgba(35,35,35,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#adadad', endColorstr='#232323',GradientType=0 ); /* IE6-9 */
    -moz-box-shadow:inset 0px 1px 0px 0px #bdbab9;
    -webkit-box-shadow:inset 0px 1px 0px 0px #bdbab9;
    box-shadow:inset 0px 1px 0px 0px #bdbab9;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    border:1px solid #5C5C5C;
    display:inline-block;
    cursor:pointer;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    padding: 3px 5px 3px;
    font-weight:bold;
}

input[type=submit]:hover {
    background: rgb(35,35,35); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(35,35,35,1) 0%, rgba(173,173,173,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(35,35,35,1)), color-stop(100%,rgba(173,173,173,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(35,35,35,1) 0%,rgba(173,173,173,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(35,35,35,1) 0%,rgba(173,173,173,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(35,35,35,1) 0%,rgba(173,173,173,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(35,35,35,1) 0%,rgba(173,173,173,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#232323', endColorstr='#adadad',GradientType=0 ); /* IE6-9 */
    -moz-box-shadow:inset 0px 1px 0px 0px #bdbab9;
    -webkit-box-shadow:inset 0px 1px 0px 0px #bdbab9;
    box-shadow:inset 0px 1px 0px 0px #bdbab9;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    border:1px solid #5C5C5C;
    display:inline-block;
    cursor:pointer;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    padding: 3px 5px 3px;
    font-weight:bold;
}

input[type=submit]:disabled {
	border-radius: 6px;
    border: 1px solid #5C5C5C;
    background: #999999;
    cursor:not-allowed;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    padding: 3px 5px 3px;
    font-weight:bold;
}

input[type=submit]:active {
	/*font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	padding: 3px 5px 3px;
	background: -moz-linear-gradient(top, #292929 0%, #292929);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#292929),
		to(#292929));
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #0080ff;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,1);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,1);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0.7),
		0px 1px 0px rgba(255,255,255,0.3);*/
}



/* ------------------------------------------------------------------- */

.logo_login {
    text-align:center; 
    top:50%; 
    left:50%; 
    margin-left:-128px; 
    margin-top: -240px; 
    position:fixed;
}

.appname {
    font-size:36px;
    font-weight:bold;
    color: rgb(121, 121, 121);
    right:10px;
    top:10px;
    position:absolute;
}

.footer {
    width:300px;
    left:50%;
    margin-left:-150px;
    bottom:40px;
    position:absolute;
    text-align:center;
}

.passwordPopup {
    /*position: fixed;*/
	width: 360px;
	height: 280px;
	/*top: 50%;
	left: 50%;
	margin-top: -140px;
	margin-left: -180px;*/
	background: #fff;
	border-radius: 3px;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-animation-name: bounceIn;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: bounceIn;
	-moz-animation-fill-mode: both;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: linear;
	animation-name: bounceIn;
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
}


input[type=text]{
	color: #777;
	padding-left: 0px;
	margin: 2px;
	margin-left: 18px;
	width: 190px;
	height: 25px;
	border: 1px solid #c7d0d2;
	border-radius: 2px;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

input[type=text]:hover {
	border: 1px solid #b6bfc0;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #f5f7f8;
}

input[type=text]:focus {
	border: 1px solid #a8c9e4;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
}

.captcha {
    padding-left: 0px;
	margin: 2px;
	margin-left: 18px;
}