/*
 * login.css
 */
@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;
	background: #fff;
	color: #fff;
	font-family: Arial;
	font-size: 12px;
}

.body{
	position: absolute;
    top:    -1px;
	right:  -1px;
	bottom: -1px;
	left:   -1px;
	width:  auto;
	height: auto;
	background-image: url("background-2.jpg");
	background-size: cover;
	-webkit-filter: blur(10px);
	z-index: 0;
}

.grad{
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}

.title {
	position: absolute;
	top: calc(50% - 80px);
	left: calc(50% - 260px);
	z-index: 2;

	float: left;
	font-family: 'Exo', sans-serif;
	font-size: 40px;
    color: PapayaWhip;
	font-weight: 500;
	text-shadow: 4px 4px 8px black;
}
.title p {
    margin: 0;
}
.In_1 {padding-left: 0.5em;}
.In_2 {padding-left: 1.0em;}
.In_3 {padding-left: 2.0em;}

.login_form{
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 50px);
	height: 150px;
	width: 350px;
	padding: 10px;
	z-index: 2;
}

.login_form input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: white;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login_form input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: white;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login_form input[type=submit]{
	width: 260px;
	height: 35px;
	background: gray;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 20px;
	color: white;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 500;
	padding: 6px;
	margin-top: 10px;
	opacity: 0.6;
}

.login_form input[type=submit]:hover{
	opacity: 0.9;
}

.login_form input[type=submit]:active{
	opacity: 1.0;
}

.login_form input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login_form input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login_form input[type=submit]:focus{
	outline: none;
}

#LoginError {
	position: absolute;
	top: -35px;
    font-family: 'Exo', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background: transparent;
    padding-left: 10px;
    color: Yellow;
    text-shadow: 1px 1px Gray;
    opacity: 1.0;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.9);
   font-weight: 500;
/*--   text-shadow: 0 0 1px black;--*/
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}

