@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,600);


html {
	height: 100%;
	width: 100%;
}

body.login-page {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 15px;
	height: 100%;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

body.login-page:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: -1;
}





.login-page .content {
	max-width: 460px;
	width: 100%;
	margin: 15px;
}






.login-page footer a {
	color: #fff;
}

.login-page footer a:hover {
	text-decoration: none;
}

.login-page footer {
	padding: 5px 0;
}




.login-page form {
	max-width: 460px;
	width: 100%;
	margin: auto;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.login-page form .form-control {
	background: transparent;
	color: #eee;
	border-radius: 0;
}

.login-page form .form-control::placeholder {
	color: #fff;
}

.login-page .form-control:focus {
	box-shadow: none;

}



.login-page form .form-control:focus {
	background: transparent;
	color: #eee;
}

.login-page form label {
	font-weight: 400;
}


.login-page .t-btn {
	cursor: pointer;
	display: block;
	width: 100%;
	padding: 5px;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 16px;
	text-transform: uppercase;
	background: transparent;
}




.login-page .t-btn:hover,
.login-page .t-btn:focus {
	color: #fff;
	box-shadow: none;
	outline: 0;
}

.alert.alert-error {
	background: rgba(0,0,0,0.4);
	font-weight: 500;
	color: #fff;
	text-align: center;
}
