* {
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Roboto', sans-serif;
	color: #353535;
	font-size: 0.8em;
	text-align: center;
	background-color: #ebebeb;
}

/*a {
  color: #353535;
  outline: 0;
  text-decoration: none;
}*/

span.error {
	display: block;
	margin-top: 15px;
	width: 100%;
	color: red;
	background-color: #f7f7f7;
	padding: 5px 15px;
}

.form-field input.error {
	background-color: rgba(255, 0, 0, 0.1);
}

.form-field input.error:hover,
.form-field input.error:focus {
	background-color: rgba(255, 0, 0, 0.2);
}

.content {
	vertical-align: middle;
	display: inline-block;
	width: 95%;
	margin-top: 75px;
	padding-bottom: 50px;
}

#ogdb-logo {
	width: 80%;
	max-width: 230px;
	margin-left: -20px;
}

.form {
	width: 100%;
	max-width: 500px;
    margin: 0 auto;
}

.form-field {
	margin: 10px 0;
}

.form-field + .niet-verplicht {
	font-weight: lighter;
}

.login {
    padding-bottom: 20px;
}

.remember-me input {
	width: auto;
	vertical-align: middle;
}

input, textarea, select, button {
  width : 100%;
  margin: 0;

  -webkit-box-sizing: border-box; /* For legacy WebKit based browsers */
     -moz-box-sizing: border-box; /* For legacy (Firefox <29) Gecko based browsers */
          box-sizing: border-box;
}

input,
textarea {
	padding: 16px;
	border-radius: 5px;
	border: none;
	outline: none;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Open Sans', sans-serif;
    width: 100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
	background-color: #f7f7f7;
	color: #000000;
	font-weight: 500;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="email"]:focus,
textarea:focus {
	background-color: #ffffff;
}

.button {
	display: inline-block;
	background-color: #eeeeee;
	text-transform: uppercase;
	color: black;
	font-weight: bold;
	transition: all 0.3s;
	padding: 16px;
	border: 2px solid #cfcfcf;
	border-radius: 5px;
	width: 100%;
}

.button:hover {
	background-color: #ffffff;
}

a.button {
	text-decoration: none;
}

.message {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;

	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}

.message.message-error {
	background-color: #f5d7d7;
	border-color: #f0bdbd;
	color: #8f3232;
}

.button-pri,
input[type="submit"] {
	background-color: #5773b8;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
    -moz-transition: all 0.3s;
	-webkit-transition: all 0.3s; /* Safari */
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.button-pri,
input[type="submit"]:hover {
	background-color: #778fc8;
}

.klik-hier {
	color: #2dc0e8;
	text-decoration: underline;
}

.voorbeeldmodel-link {
	display: inline-block;
	position: relative;
	text-align: center;
}
.voorbeeldmodel {
	width: 230px;
	margin: 0 5px;
	border-radius: 12px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
	transition: opacity 0.4s;
}
.voorbeeldmodel-caption {
	position: absolute;
	color: black;
	background: rgba(255,255,255,0.3);
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
	padding: 4px;
	font-size: 13px;
	font-weight: bold;
	text-shadow: 0px 0px 6px white;
	bottom: 4px;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 230px;
	text-transform: uppercase;
}

.voorbeeldmodel-link:hover .voorbeeldmodel {
	opacity: 0.9;
}
.voorbeeldmodel-link:hover .voorbeeldmodel-caption {
	background: rgba(255,255,255,0.8);
}
