@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

body {
	padding: 0;
	margin: 0 auto;
	background: url('../images/bg_1.png') center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	font-family: 'Lato', sans-serif;
	color: #FFF;
}

.black-filter {
	background: rgba(0,0,0, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
  	align-items: center;
  	display: flex;
  	justify-content: center;
}

.login-box {
	float: left;
	position: relative;
	width: 400px;
}

.logo {
	float: left;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	padding: 20px 30px;
	color: #FFF;
	font-size: 32px;
}

.form {
	float: left;
	width: 400px;
	padding: 20px 30px;
	border-radius: 4px;
	background: rgba(255,255,255, 0.8);
}

.form-group {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.form-group:last-child {
	float: left;
	width: 100%;
	margin-bottom: 0px;
}

.form-group label {
	float: left;
	width: 100%;
	color: #000;

}

.form-group input[type='text'] {
    float: left;
    width: 96%;
    padding: 7px 2%;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 4px;
    border: none;
}

.form-group input[type='password'] {
    float: left;
    width: 96%;
    padding: 7px 2%;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 4px;
    border: none;
}

.form-group input[type='submit'] {
    float: left;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 4px;
    border: none;
}

.credit {
	float: left;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	padding: 20px 30px;
	color: #ccc8c8;
}

.credit a {
	color: #FFF;
	text-decoration: none;
}