html, body {
	padding: 0;
	margin: 0;
	height: 100%;
}


#background {
	background-color: #000;
	background-image: url(../images/register_bg.jpg);
	background-position: center;
	background-size: cover;
	display: table;
	height: 100%;
	width: 100%;

}

#loginContainer * {
	color: #fff;
	font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-weight: normal;
	line-height: 1em;
	box-sizing: border-box;

}


::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #999;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #999;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #999;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #999;
}

#loginContainer {
	width: 80%;
	margin: 0 auto;
	position: relative;
	max-width: 1024px;
	
}

#inputContainer {
    width: 400px;
    padding: 45px;
    float: left;
    border-right: 1px solid #888;
}

#inputContainer h2 {
	text-align: center;
}


#inputContainer input[type="text"],
#inputContainer input[type="email"],
#inputContainer input[type="password"]   {
	display: block;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    height: 27px;
    line-height: 27px;
    width: 100%;
	
}

#inputContainer label {
	color: #fff;
	font-size: 14;
   margin-top: 16px;
}


#inputContainer button {
    background: transparent;
    border: 3px solid #fff;
    border-radius: 250px;
    color: #fff;
    display: block;
    font-size: 16px;
    letter-spacing: 1;
    margin: 20px auto;
    height: 41px;
    width: 80%;
   
}

#inputContainer button:hover {
	cursor: pointer;
}

.hasAccountText span {
	font-weight: bold;
	font-size: 12px;
	text-decoration: underline;
	cursor: pointer;
	}
	
.hasAccountText 	{
	text-align: center;
	}
	
	
	
#registerLogo {
    width: 50%;
    padding: 30px 0px 0px 0px;
    margin-left: -10;
    }
    
#loginText {
    padding: 65px;
    display: table-cell;
}



#loginText h1 {
    font-size: 60px;
    font-weight: bold;
    
 }
 
 #loginText h2 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin: 35px 0;
    
} 

 #loginText ul {
    padding: 0
} 

 #loginText li {
   font-size: 20px;
   list-style-type: none;
   padding: 2px 0px 20px 33px;
   background: url(../images/icons/ok_filled.png) no-repeat;
   
} 

#loginFooter {
	 margin-left: 10px;
    margin-top: -15px;
    font-size: 9;
    font-family: sans-serif;
    color: #888;
}

#registerForm,
#loginForm {
display: none;
}

#inputContainer .errorMessage {
font-size: 12;
display: block;
color: #2379ed;
margin: 10px;
}


 