@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

html{
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	background-image: url("/images/responsive/house-night-login-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-family: 'Helvetica Neue','Roboto',helvetica,arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

#logo-container{
	max-width: 320px;
    width: 100%;
    padding: 15px 15px 10px 15px;
    box-sizing: border-box;
    margin: 20px auto;
    background-color: rgba(0,0,0, .40);
    border-radius: 14px;
}

#logo-container.xposure-logo-container{
	max-width: 380px;
	background-color: rgb(141 141 141 / 40%);
}

#xposure-logo {
    width: 100%;
}

#login-box {
	background-color: rgba(0,0,0, .60);
	border-radius: 10px;
	max-width: 350px;
	margin: auto;
	color: #fff;
	padding: 20px 40px;
	position: relative;
	top: 30px;
}

#login-box a{
	color: #00aedb;
	text-decoration: none;
}

h1{
	text-align: center;
	font-weight: 300;
	margin-top: 0px;
	font-size: 1.5em;
}

.login-field{
	display: block;
	font-size: 16px;
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	color: #555;
    background-color: #fff;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border ease-in-out .2s;
    -o-transition: border ease-in-out .2s;
    transition: border ease-in-out .2s;
}

.login-field:focus {
    border: 4px solid #66afe9;
    outline: 0;
}

select.login-field{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/images/responsive/caret-blue.png);
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: right 9px center;
    padding-right: 24px;
    box-shadow: none;
    cursor: pointer;
}

#submit-button, .login-button{
	display: block;
	background-color: #279dee;
    border: 0;
    padding: 0 16px;
    font-size: 16px;
    line-height: 36px;
    color: #fff;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
    transition: background-color ease-in .2s, border ease-in .2s;
}
#submit-button:hover, #submit-button:focus, .login-button:hover, .login-button:focus{
	background-color: #00ae00;	
}
#submit-button:focus, .login-button:focus{
	border: 3px solid rgba(255,255,255, .8);
    outline: 0;
}

#login-box a.login-button{
	display: inline-block;
	color: #fff;
	text-align: center;
	position: relative;
  	left: 50%; 
  	transform: translateX(-50%);
}

#login-error {
	text-align: center;
	margin-top: 15px;
	font-weight: bold;
}

#login-error-detail {
	text-align: center;
	margin-top: 15px;
	font-size: 14px;
}

#login-board-name {
	color: #b1b1b1;
    font-size: 14px;
	text-align: center;
	margin-bottom: 15px;
}

p{
	color: #b1b1b1;
    font-size: 14px;
    margin-bottom: 0px;
}

div.switch-lang {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

footer{
	text-align: center;
    position: relative;
    top: 70px;
    text-shadow: 0 0 8px #000;
}

footer p{
    color: #e8e8e8;
}

footer p.disclaimer{
	font-size: 11px;
    color: #c8c8c8;
}

footer a{
	color: #fff;
	font-weight: bold;	
}