@import url(https://fonts.googleapis.com/css?family=Roboto:300);
@import url('font-awesome.css');



/* ************* */
/* INITIALISATIE */
/* ************* */
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}



/* ***** */
/* START */
/* ***** */
.outer-wrapper {
	width: 322px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	border: solid 0px red;	
}

.inner-wrapper {
	width: 300px;
	position: relative;
	top: 0.4em;
	left: 0.6em;
	border: solid 0px yellow;
}

.icoon {
	width: 0.6em;
	height: 1em;
	padding: 1.1em;
	float: left;
	position: absolute;
	border: solid 0px green;
}

.form {
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	max-width: 360px;
	padding: 1.6em;
	text-align: center;
	border: solid 0px black;
}

.form input {
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	font-family: "Roboto", sans-serif;
	outline: none;
	background: #f2f2f2;
	width: 100%;
	border: 0;
	margin: 0 0 1em;
	padding: 1em;
	box-sizing: border-box;
	font-size: 1em;
	border: solid 1px #ffa500;
}

.form input[type=text]:focus, input[type=password]:focus {
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
	border: 1px solid rgba(81, 203, 238, 1);
}

.form input[type='checkbox'] {
	position: absolute;
	left: -5em;
	top: 0.1em;
}

.form label {
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	position: relative;
	margin-left: 7em;
	color: #b3b3b3;
	top: 0;
}

.form button {
	margin-top: 1em;
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: #ffa500;
	width: 100%;
	border: 0;
	padding: 1em;
	color: #ffffff;
	font-size: 1em;
	-webkit-transition: all 0.3 ease;
	transition: all 0.3 ease;
	cursor: pointer;
	border: solid 1px black;
}

.form button:hover,.form button:active,.form button:focus {
	background: #ffbc40;
}

.form .title {
	margin-bottom: 1em;
	color: #000000;
	font-size: 2em;
}

.form .message {
	margin: 1em 0 0;
	color: #b3b3b3;
	font-size: 1em;
}

.form .message-error {
	margin: 1em 0 0;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	color: #ffa500;
	padding-bottom: 1em;
}

.form .message-succes {
	margin: 1em 0 0;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	color: #4CAF50;
	padding-bottom: 1em;
}

.form .message a {
	color: #ffa500;
	text-decoration: none;
}

.form .wachtwoord-form {
	display: none;
}



/* *************************** */
/* MEDIA - MOBILE, LANDSCAPE 2 */
/* *************************** */
@media screen and (max-height: 480px) and (min-device-aspect-ratio: 1/1) {
	.outer-wrapper {
		border: solid 0px red;
	}

	.inner-wrapper {
		border: solid 0px yellow;
	}

	.form .title {
		display: none;
	}
	
	.form .landscape-mode {
		display: none;
	}
	
	.form button {
		margin-top: 4.3em;
	}
	
	.form .message {
		margin: 0;
	}
	
	.form .message-error {
		margin: 0;
	}
	
	.form .message-succes {
		margin: 0;
	}
	
	.form .landscape-email {
		position: absolute;
		margin-left: -8.2em;
		width: 15.5em;
	}
	
	.form .landscape-password {
		position: absolute;
		margin-left: 8.2em;
		width: 15.5em;
	}
}



body {
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;      
}