.loginform {
	width: 300px;
	/*background: #FFF;*/
	
	color: #000;
	display: inline-block;
	
	border: 1px solid #AF0;
	/*border-radius: 4px 12px 4px 12px;*/
	box-shadow: 4px 8px 10px -5px rgba(0,0,0,0.6);
	
	overflow: visible;
}

.loginform-header {
	font-size: 18px;
	
	color: #FFF;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
	
	padding: 6px;
	
	text-align: left;
	vertical-align: middle;
	
	border: 1px solid #AF0;
	border-width: 0px 0px 1px 0px;
	
	/*border-radius: 4px 12px 0px 0px;*/
	
	background: #B4A424;
	
	background: -webkit-linear-gradient(to bottom right, #7C0, #150);
	background: -o-linear-gradient(to bottom right, #7C0, #150);
	background: -moz-linear-gradient(to bottom right, #7C0, #150);
	background: linear-gradient(to bottom right, #7C0, #150);
}

.loginform-body {
	background: #CCC;
	/*overflow: hidden;*/
	
	position: relative;
	
	transition: height 3s;
}

.loginform-footer {
	padding: 6px;
	
	
	background-color: #444;
	
	background: -webkit-linear-gradient(to bottom right, #555, #222);
	background: -o-linear-gradient(to bottom right, #555, #222);
	background: -moz-linear-gradient(to bottom right, #555, #222);
	background: linear-gradient(to bottom right, #555, #222);
	
	/*background: linear-gradient(to top, #047, #CCC);*/
	/*background: linear-gradient(to top, #134, #DDD);*/
}


.tbox-label {
	color: #FFF;
	text-shadow: 2px 2px 3px rgba(0,0,0,.6);
	float: left;
	margin-bottom: -3px;
	padding-left: 3px;
}


input {
	border: 1px solid #AAA;
	border-radius: 0px;
	
	outline: none;
}

.loginField {
	width: calc(100% - 20px);
	
	
	margin: 4px;
	padding: 4px;
	
	border: 1px solid #AAA;
	border-radius: 0px;
	
	outline: none;
	
	color: #FFF;
	font-size: 14px;
	
	box-shadow: 4px 8px 10px -5px rgba(0,0,0,0.6);
	text-shadow: 0px 1px 0px rgba(0,0,0,0.6);
	
	background: #050;
	transition: background .4s, border-color .5s;
}

.loginField:focus {
	background: #082;
	border-color: #CCC;
	
	transition: background .4s, border-color .5s;
}

.loginField-okay {
	border-color: #8F0 !important;
	border-width: 2px;
	margin: 3px;
}

.loginField-nope {
	border-color: #F30 !important;
	border-width: 2px;
	margin: 3px;
}

input[readonly] {
	border-color: #888 !important;
	background: #444 !important;
	color: #AAA !important;
	
	
	text-shadow: 0px -1px 0px rgba(0,0,0,0.7);
	box-shadow: none;
}


.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

.autofilled {
	border: 1px solid #FB0;
}


::-webkit-input-placeholder {
	font-style: italic;
}
:-moz-placeholder {
	font-style: italic;
}
::-moz-placeholder {
	font-style: italic;
}
:-ms-input-placeholder {
	font-style: italic;
}




@keyframes sliding {
	from {
		left: 0px !important;
	}
	to {
		left: -10000px !important;
	}
}


