@font-face {
	font-family: 'offi';
	src: url('../fonts/osn45.eot');
	src: url('../fonts/osn45.woff') format('woff'), url('../fonts/osn45.ttf') format('truetype');
}

*
{
	margin:0;
	padding:0;
	box-sizing: border-box;
}

body
{
	font: 14px Arial, Helvetica, sans-serif;
	background: #000000 url(../images/bg_1.jpg) no-repeat fixed center;
	background-size: cover;
}

p
{
	padding: 5px 0;
}

h1 
{
	font: 40px offi, sans-serif;
	color: #ffffff;
	margin: 20px 0 0px 0;
	padding: 0;
	font-weight: bold;
}

h2
{
	font-size: 15px;
	color: #ffffff;
	margin: 0px 0 15px 0;
	font-weight: normal;
	padding: 0;
}

a
{
	color: #ffffff;
	text-decoration: underline;
}

a:hover
{
	color: #ffffff;
	text-decoration: none;
}

.center
{
	text-align: center;
}

#login_result
{
	color: #ffffff;
	padding-top: 10px;
}

.formContainer
{
	position: absolute;
	top: 50%;
	left: calc(100% - 90%);
	width: 400px;
	height: 450px;
	background-color: #9B0000;
	box-shadow: 0px 0px 40px #000000;
	border-radius: 10px;
	padding: 20px 30px;
	margin-top: -225px;
}

.loginTitle
{
	font-size: 25px;
	color: #ffffff;
	margin-top: 30px;
	margin-bottom: 10px;
}

input
{
	display: block;
	width: 100%;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 42px;
	margin-bottom: 20px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	font-size: 16px;
}

input[name="password"]
{
	margin-bottom: 5px;
}

button
{
	height: 35px;
	width: 119px;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	background-color: #9B0000;
	cursor: pointer;
	font-size: 16px;
}

select
{
	color: #FFFFFF;
	display: block;
	font-family: Arial;
	font-size: 11px;
	font-weight: 500;
	background-color: #9B0000;
	width: 36px;
	height: 22px;
	padding-left: 6px;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url(../images/icons/UNFOLD_WHITE.png);
	background-repeat: no-repeat, repeat;
	background-position: right 4px top 50%, 0 0;
	background-size: .65em auto, 100%;
	text-transform: uppercase;
}

@media only screen and (max-width: 950px)  {

.formContainer
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 450px;
	margin-top: -225px;
	margin-left: -200px;
}
	
}

@media only screen and (max-width: 450px)  {

.formContainer
{
	position: static;
	width: calc(100% - 10px);
	height: auto;
	top: 0px;
	left: 0px;
	margin: 10px auto 10px auto;
}
	
}

@media only screen and (max-height: 500px)  {

.formContainer
{
	position: static;
	top: 0px;
	left: 0px;
	margin: 10px auto 10px auto;
}
	
}