@charset "utf-8";
/* CSS Document */
HTML, BODY {
	height: 100%;
	margin: 0;	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	background: rgba(194,194,194,1);
	position: relative;
}
a {
	text-decoration: none;
}

DIV.inner {
	width: 90%;
	max-width: 1040px;
	min-width: calc( 320px * 0.9 );
	margin: 0px auto;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	background: rgba(255,255,255,0.75);
	padding: 24px;
}


div#header {
	background: #ffffff;
}
div#header .inner {
	text-align: center;
	padding: 20px 0px;
	background: transparent;
}
div#header .inner .logo {
	margin: 0px auto;
	display: block;
	height: 70px;
	font-weight: bold;
	line-height: 72px;
	color: #ffffff;
	
	background-image: url(/images/structure/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

div#content .inner {
	padding-top: 0px;
}
div#content .inner h1 {
	margin-bottom: 0px;
	font-size: 30px;
	line-height: 42px;
	text-align: center;
}
.conditions {
	max-height: 30vh;
	overflow-y: auto;
	padding: 15px;
	background: #ffffff;
	border: 2px solid #484a4b;
}

form#login {
	margin-top: 25px;
	margin-bottom: 0px;
}
form#login input[type=text] {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
}
form#login input[type=email] {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
}
form#login .checkbox {
	overflow: hidden;
	margin: 15px 0px 15px 0px;
}
form#login .checkbox .input-row {
	margin: 0px;
}
form#login .checkbox input {
	float: left;
	width: 14px;
	height: 14px;
	box-sizing: border-box;
	margin: 4px 0px;
}
form#login .checkbox label {
	float: right;
	width: calc( 100% - 13px - 7px );
	font-weight: normal;
	box-sizing: border-box;
	line-height: 22px;
	cursor: pointer;
	padding: 0px;
}
form#login DIV.action-row {
	text-align: center;
}


div#poweredby {
	
}
div#poweredby .inner {
	text-align: center;
	background: transparent;
	padding: 10px 0px;
	color: #000000;
}
div#poweredby .inner a {
	color: 000000;
	font-weight: 300;
	text-decoration: none;
}


.submit-button {
	overflow: hidden;
	display: flex;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.submit-button .action-row {
	float: left;
	padding-right: 30px;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.submit-button .action-row span {
	display: inline-block;
}
.submit-button .action-row input {
	background: #3f3d3b;
    color: #ffffff;
    bordeR: 0px;
}
.submit-button .sponsordby {
	float: right;
	width: 200px;
	text-align: center;
}
.submit-button .sponsordby span {
	display: block;
	color: #74a061;
	padding-bottom: 5px;
}
.submit-button .sponsordby img {
	display: block;
	width: 100%;
	height: auto;
}



@media screen and (max-width: 550px) {
	.submit-button {
		overflow: hidden;
		display: block;
	}
	.submit-button .action-row {
		float: none;
		clear: both;
		padding-right: 0px;
		display: block;
		margin-bottom: 10px;
	}
	.submit-button .sponsordby {
		float: none;
		clear: both;
		text-align: center;
		margin: 0px auto;
	}
}