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

body {
	width: 100%;
	height: 100%;
	background-color: #FCFDFD;
	background-image: url('/img/bakgrunn.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.wrap-login {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wrap-form {
	width: 300px;
	padding: 30px;
	box-shadow: 0px 0px 8px 0px #333;
	border: 40px solid rgb(0, 123, 191);
	background: #fff;
}

	.wrap-form img {
		margin-bottom: 20px;
	}

	.wrap-form .info {
		margin-bottom: 20px;
	}

	.wrap-form p {
		font-size: 16px;
		color: #000;
	}

#header {
	padding: 1rem;
	color: #fff;
	font-size: 2rem;
	margin-bottom: 1rem;
}

#content {
	position: relative;
	display: block;
	min-width: 16rem;
	width: 90%;
	max-width: 22rem;
	margin: 0 auto;
	padding-bottom: 100px;
}
label {
	color: #000;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
}

.status {
	margin-bottom: 20px;
	padding: 1.5rem;
	color: #FC5957;
	font-size: 14px;
	font-weight: bold;
	background: rgba(255, 0, 0, 0.2);
}

	.status.hidden {
		display: none;
	}

	.status.success {
		color: green;
		background: rgba(0, 255, 0, 0.2);
	}
	.status .melding {
		display: none;
	}

input {
	display: block;
	width: 100%;
	padding: 0.7rem 0;
	text-indent: 0.7rem;
	margin: 0 0 12px 0;
}

h2 {
	margin-bottom: 20px;

	font-size: 24px;
}

.buttons {
	margin-top: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

	.buttons .forgot-password {
		margin-right: 10px;
		text-decoration: none;
		font-size: 13px;
		display: inline-block;
		color: #111;
	}

	.buttons .button {
		display: inline-block;
		background-color: rgb(104, 171, 68);
		color: #fff;
		padding: 0.8rem 1rem;
		cursor: pointer;
		text-transform: uppercase;
		font-weight: bold;
		border-radius: 20px;
	}

#footer {
	position: relative;
	left: 0;
	bottom: 0;
	
	height: 4rem;
	width: 100%;
	
	margin-top: 5rem;
}
#footer .kanstad {
	width: 100%;
	text-align: right;
}
#footer .kanstad a {
	margin-right: 30px;
	display: inline-block;
}


/* Medium */
@media only screen and (min-width: 40.063em) {

	#footer {
		position: absolute;
		left: 0;
		bottom: 0;
		margin: 0;
	}
	
}



.loading {
	background-color: #ddd;
	border: solid 1px #ddd;
	color: #888;
}

.error {
	background-color: #fff;
	border: solid 1px #FC5957;
	color: #888;
	transition:background-color 1s ease-out, border 1s ease-out;
}