/** GENERAL */

html {
    width: 100%;
    height: 100%;
    margin: 0px;
}

body {
	position: relative;
    width: 100%;
    height: auto;
    margin: 0px;
}

input:focus{
	outline: 0;
}


/** HEADER */

#header {
	position: absolute;
	height: 77px;
	width: 100%;
	background: white;
}

#header img {
	margin-left: 20px;
	margin-top: 10px;
}


/** BODY */

#loginContainer {
	width: 100%;
	height: 100%;
}

#backgroundContainer {
	width: 100%;
	height: 100%;
}

#loginBody {
	width: 405px;
	height: auto;
	background: white;
	margin: auto;
	position: absolute;
	top: 25%;
	left: 35%;
	border: solid 2px #8A8A8A;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 25px;
}

#loginHeader {
	color: #4A4A4A; 
	font-size: 28px;
	font-family: tahoma, sans-serif;
	width: 100%;
	text-align: center;
}

#loginForm {
	width: 100%;
}

#loginForm label {
	display: block; 
	width: 100%;
	margin-top: 20px;
	color: #8A8A8A;
	font-size: 16px;
	font-family: tahoma, sans-serif;
}

#j_username, #j_password, #j_new_password, #j_confirm_password {
	background: white;
	border: none;
	border-bottom: solid 1px #8A8A8A;
	color: #4A4A4A;
	width: 100%;
	height: 50px;
	font-size: 16px;
	font-family: tahoma, sans-serif;
}

#j_username:focus, #j_password:focus, #j_new_password:focus, #j_confirm_password:focus {
	background: transparent !important;
	color: #4A4A4A !important;
	border-bottom: solid 1px #049224 !important;
}

#entrarButton {
	width: 100%;
	height: 60px;
	text-align: center;
	padding: 20px auto;
	background: white;
	border: solid 1px #F61591;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: #F61591;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 10px;
	cursor:pointer;
}

#entrarButton:active {
	background: #F61591;
	color: white;
}

#lostPasswordButton, #changePasswordButton, #cancelChangePasswordButton, #changeSecretQuestionButton {
	width: 100%;
	text-align: center;
	background: white;
	color: #049224;
	font-size: 16px;
	font-family: tahoma, sans-serif;
	border: none; 
	margin-top: 10px;
	cursor:pointer;
}


/** FOOTER */ 
#footer {
	height: 52px;
	width: 100%;
	background: #595A5D;
	text-align: center;
	position: absolute;
	bottom: 0;
	color:#C0C0C0;
	font-size:14px;
	font-family:Tahoma,Arial,Sans-Serif;
}

#footer span {
	color: #A2A3A4;
	display: block;
	font-size:14px;
	font-family:Tahoma,Arial,Sans-Serif;
	margin: auto;
	padding-top: 15px;
}


/** ERRORS */

.errorblock {
	top: 0;
	color: #929496;
	background: #FFEBEE;
	position: relative;
	height: auto;
	width: 100%;
	font-size: 18px;
	font-family: tahoma, sans-serif;
}

.errorblock p {
	padding: 15px;
}

.errorblock p:before {
	content: 'ERROR: ' !important;
	color: black;
}

