body {
	vertical-align: middle;
	font-family: 'Lato', sans-serif;
	color: #fff;
}
h1 {
	letter-spacing: 2px;
	text-align: center;
	color: #f98f20;
}

span {
	color: #F00;
}
span.input-caption {
	color: #FFF;
	padding-left: 5px;
}

.background {
	background: rgba(255,255,255,0.6) url("../assets/login-background.jpg") no-repeat fixed center;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.container {
	width: 320px;
	position: absolute;
	left:0; right:0;
	top:0; bottom:0;
	margin: auto;
	border: solid 0px #fff;
	max-width:100%;
	max-height:100%;
}
#container-login {
	height: 312px;
}
#container-register {
	height: 888px;
}


.page-change-link {
	text-align: center;
}
a {
	color: #f98f20;
	text-decoration: none;
}


input {
	width: 320px;
	height: 40px;
	border: none;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 5px;
	box-sizing: border-box;
	color: #fff;
}
.inputs {
	background-color: rgba(200,200,200,0.4);
	padding-left: 10px;
}
/* do wywalenia*/
.inputs:focus {
	box-shadow: 0px 0px 10px rgba(200,200,200,0.2);
	outline: none;
}
.inputs::-webkit-input-placeholder {
	color: #ddd;
}
.inputs:-moz-placeholder {
	color: #ddd;
}
.inputs::-moz-placeholder {
	color: #ddd;
}
.inputs:-ms-input-placeholder {
	color: #ddd;
}

.submit {
	background-color: #f98f20;
}
.submit:hover {
	cursor: pointer;
}
.user-incorrect, .password-incorrect {
	border: solid 1px #F00 !important;
}