@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body{
	margin: 0;
	padding: 0;
	color: #ffffff;
	font-family: Arial;
	font-size: 12px;
    overflow: hidden; 
}

.body{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	z-index: 0;
	background: black;
   
}

.header{
	position: absolute;
	top: calc(50% - 55px);
	left: calc(35% - 50px);
	z-index: 2;
	
}

.header div{
	float: left;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 35px;
	font-weight: 200;
}

.header div span{
	color: #ffffff !important;
}

.login{
	position: absolute;
	top: calc(50% - 75px);
	left: calc(55% - 60px);
	height: 150px;
	width: 350px;
	padding: 10px;
	z-index: 2;
}

.login input[type=text]{
	width: 250px;
	height: 35px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color:  #ffffff;
	font-family: 'Exo', sans-serif, Arial;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 35px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif, Arial;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=submit]{
	width: 260px;
	height: 35px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
    opacity: 0.5;
}

.login input[type=submit]:hover{
	opacity: 1;
	color: #000000;
	font-weight: bold;
}

.login input[type=submit]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=submit]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}

@media screen and (max-width: 1048px) {
    .login {
        top: calc(50% - 75px);
		left: calc(55% - 60px);
    }

    .header{
       
		top: calc(50% - 55px);
		left: calc(33% - 50px);
       
    }
}
@media screen and (max-width: 958px) {
    .login {
        top: calc(50% - 75px);
		left: calc(55% - 60px);
    }

    .header{
       
		top: calc(50% - 55px);
		left: calc(30% - 50px);
       
    }
}

@media screen and (max-width: 799px) {
    .login {
        top: calc(50% - 75px);
        left: calc(35% - 60px);
    }

    .header{
       
        top: calc(40% - 110px);
        left: calc(35% - 50px);
       
    }
}

@media screen and (max-width: 430px) {
    .login {
        top: calc(50% - 75px);
        left: calc(25% - 60px);
    }

    .header{
       
        top: calc(40% - 110px);
        left: calc(25% - 50px);
       
    }
}