html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	background-color: #131313;
}

/*********** Main container 100% x 100% ***********/
#page {
    position: relative;
	top: 0;
    width: auto;
    background-size: cover;
    text-align: center;
	transition: margin-left ease-in .4s;
	transition-delay: .2s;
}

/* Login page background */
.indexPage {
	background: url('images/background.jpg') no-repeat center center fixed;
	height: 100%;
}

/* User's page background */
.userPage {
	background-color: #131313;
	height: auto;
}
/**************************************************/

/*********** Small resolution devices *************/
@media screen and (max-height: 450px) {
    .menu {padding-top: 15px;}
    .menu a {font-size: 18px;}
}
/**************************************************/

/********** Graphics and text formatting **********/
img {
    border: 0;
}

p, input, a {
    color: #1b2a71;
    font-size: 18px;
	font-weight: 300;
	text-align: justify;
    text-shadow: 0px 0px 1px;
}

a, a:visited, a:active {
    text-decoration: none;
}

p::selection {
  /* background: #1b2a71; */ 
}

#login p.error {
    position: relative;
    top: 50px;
	font-size: 16px;
	text-align: left;
    color: #f00;
}

#login h1.error_pages {
    position: relative;
    top: 30px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

#login p.error_pages {
    position: relative;
    top: 20px;
	font-size: 16px;
	text-align: center;
    color: #fff;
}

.pageFontLight {
    font-family: 'QanelasUltraLight';
}

.pageFontBold {
    font-family: 'QanelasMedium';
}

.blueText {
	color: #1b2a71;
}
/**************************************************/

/******************* Login page *******************/
#login {
    position: absolute;
    width: 400px;
    height: 300px;
    z-index: 3;
    top: 50%;
    left: 70%;
    margin: -160px 0 0 -200px;
}

#login p {
    display: inline;
    margin-left: -4px;
	padding-top: 10px;
	font-size: 35px;
	color: #E8E8E8;
}

#login img {
    display: inline;
    width: auto;
    height: 100px;
    vertical-align: middle;
    margin-right: 40px;
}

#login form {
	position: relative;
	top: 30px;
}

#login input {
    width: 230px;
    height: 25px;
    padding: 5px;
    font-size: 20px;
    margin-top: 11px;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: transparent;
	background-size: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 40px;
    opacity: 0.6;
	border-radius: 3px;
	background-color: #131313;
	color: #fff;
	transition: opacity .2s ease-in-out;
}

/* "Login" and "password" texts inside input forms */
#login input::-webkit-input-placeholder {
    opacity: 0.5;
}

#login input:-moz-placeholder {
    opacity: 0.5;
}

#login input::-moz-placeholder {
    opacity: 0.5;
}

#login input:-ms-input-placeholder {
    opacity: 0.5;
}

#login input[type=text] {
    background-image: url("images/login.png");
	transition: border .5s ease-in-out;
}

#login input[type=text]:focus {
    opacity: 1;
}

#login input[type=password] {
    background-image: url("images/password.png");
	transition: border .5s ease-in-out;
}

#login input[type=password]:focus {
    opacity: 1;
}

#login input[type=submit] {
    width: 275px;
    height: 32px;
	padding: 0;
    text-align: center;
    font-size: 18px;
	line-height: 18px;
	border-radius: 3px;
	background-color: #006bae;
	color: #E8E8E8;
}

#login input[type=submit]:hover {
    opacity: 1;
}
/**************************************************/