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

body {
    background-color: #000;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-text-size-adjust: 100%;
	font-size: 15px;
}

#login_body {
    display: block;
    position: fixed;
	-moz-user-select:none;
    -webkit-user-select:none;
	alignment-adjust:central;
    top: 50%; left: 50%;
    width: 380px; height: 280px;
    padding: 24px 0px;
    transform: translate(-50%, -50%);
	border: 2px solid #a8a8a8;
    border-radius: 16px;
    box-shadow: 0px 0px 12px 2px #999;
    background-color: #444;
}

.form-container {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 80%;
    box-sizing: border-box;
    left: 10%;
}

.form-container .form-header {
    display: inline-block;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.form-header .login-message {
	display: inline-block;
    position: relative;
	padding: 2px 16px;
    z-index: 3;
	height: 18px;
	font-size: 11pt;
	color: #ff2e2e;
    background-color: #444;
	text-align: center;
}

.form-header .login-message .normal {
    font-size: 12pt;
	color: #ff9e00;
}

.form-header .horizontal-line {
    display: inline-block;
    position: relative;
	width: 100%;
    border: 1px solid #ff9e00;
    border-bottom: none;
/*    border-radius: 4px 4px 0px 0px;*/
    box-sizing: border-box;
	margin-top: -10px;
	height: 12px;
    margin-bottom: 8px;
}

.form-row {
    display: inline-block;
    position: relative;
	height: 32px;
    width: 100%;
    box-sizing: border-box;
    margin: 8px auto;
}

.form-row .row-content {
    display: inline-block;
    position: relative;
    background-color: transparent;
    padding: 0px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0px;
}

.form-row label {
    display: block;
    position: relative;
    padding-left: 6px;
    z-index: 3;
    width: 20px;
    height: 30px;
}

.form-row label svg {
	width: 100%;
    height: 100%;
    fill: #ff9e00;
}

.form-row input {
	display: block;
    position: relative;
	font-size: 15px;
	width: 100%;
	height: 32px;
	color: #ffc362;
    background-color: transparent;
	padding: 2px 2px 2px 30px;
	border-radius: 0;
    margin-top: -30px;
    box-sizing: border-box;
}

.form-row input.txt-input {
    border: #ff9e00 solid 2px;
}

.form-row input:focus {
    outline: none;
    box-shadow: 0px 0px 6px 2px #ffd3a5;
    border-color: #ffd3a5;
}

.banner_container {
    display: inline-block;
    width: 80%;
    margin: 4px 10% 16px 10%;
    text-align: center;
}

.login_banner {
	max-width: 100%;
}

.form-row .submit-button {
    display: inline-block;
	margin: 4px auto;
    opacity: 1;
    color: #fff;
    width: 100%;
	height: 32px;
	border: 1px solid #CCC;
    background-color: #B78B46;
    padding: 0;
	font-size: 16px;
}

.form-row .submit-button:hover {
    background-color:#6b5616;
	cursor:pointer;
}

.form-row .submit-button.inactive{
    opacity: 0.3;
    background-color:transparent;
}

.form-row .submit-button.inactive:hover{
    cursor: not-allowed;
}
