
:root {
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Roboto', sans-serif;

  --color-primary:#3E97FF;
  --color-secondary: #002164;
  --color-tertiary:#ff2437;
  --color-four: #ff7e12;
  --color-five: #00aeef;
  --color-six: #027bc6;
  --color-muted: #eef0f2;
  --color-default: #fff;
  --color-emphasis: #002164;
	--color-success: #48c687;
	--color-warning: #ff7e12;
	--color-danger: #ff2437;

  --animation-primary: .5s cubic-bezier(.3, 1, .3, 1);
  --animation-nav: .5s cubic-bezier(.6, 0, .4, 1);
  --animation-smooth: .5s cubic-bezier(.7, 0, .3, 1);

  --title-size: min(5vw, 5em);

  --border-radius: clamp(1em, 1.5vw, 1.5em);
  --border-radius-medium: calc(clamp(1em, 1.5vw, 1.5em) * 1.5);
  --border-radius-small: calc(clamp(1em, 1.5vw, 1.5em) * 0.5);
  --border-radius-tiny: calc(clamp(1em, 1.5vw, 1.5em) * 0.3);

  --padding-tiny: clamp(5px, 1vw, 5px);
  --padding-small: clamp(10px, 2vw, 20px);
  --padding-medium: clamp(10px, 3vw, 40px);
  --padding-large: clamp(20px, 4vw, 80px);
  --padding-xlarge: clamp(30px, 5vw, 100px);
  --padding-huge: clamp(5px, 6vw, 120px);
  
  --section-padding-tiny: clamp(30px, 5vw, 50px);
  --section-padding-small: clamp(40px, 10vw, 80px);
  --section-padding-medium: clamp(60px, 15vw, 120px);
  --section-padding-large: clamp(80px, 20vw, 160px);
  --section-padding-xlarge: clamp(100px, 40vw, 200px);
  --section-padding-huge: clamp(150px, 60vw, 300px);

  --bg-gradient-variant: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%);
  
}
* {
	box-sizing: border-box;
}
body
{
	margin: 0;
	padding: 0;
	height: 100%;	
	
	font-size: 14px;
	font-weight: 400;
	color: var(--color-emphasis);

	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: none;
}
a:link, a:visited, a:active
{ 
	color: var(--color-primary);
}
a:hover {
	color: var(--color-primary);
	
}
/* Inlogscherm
------------------------------------------------------------------------------------------ */	
.page-container {
	position: fixed;
	top:0;
	left:0;
	display: block;
	width: 100%;
	height: 100vh;
	background-color: var(--color-muted);
}
.page-container-background {
	position: absolute;
  width: 100%;
	height: 100%;
	background-image: url('../images/login-background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.5;
	z-index: 1;
}
.page-container-shape {
	position: absolute;
  width: 100%;
	height: 100%;
  top: 0px;
  left: -200px;
  mix-blend-mode: overlay;
	background-image: url('../images/icon-outline-primary.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 2;
}

.login-container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	max-width: 600px;
	min-height: 450px;
	transform: translate(-50%, -50%);
	border-radius: var(--border-radius-medium);
	
	z-index: 3;
}
.login-container:before {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	/* box-shadow: 0 0 80px var(--color-emphasis); */
	box-shadow: 0px 4px 20px rgba(0, 33, 100, 0.1);
	border-radius: var(--border-radius-medium);
	content: '';
	opacity: 0.4;
	z-index: -1;
}
	


.login-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height:100px;
	background: var(--color-default);
	border-bottom: 1px solid rgba(0, 33, 100, 0.1);
	margin-bottom: 0px;
	padding: 10px 40px;
	border-radius: 32px 32px 0 0 ;
	
}

.login-logo { 
	position: relative;
	height: 50px;
	top: 2px;
}
.login-slogan {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-emphasis);
	opacity: 0.5;
	
}
.login-center{
	float: left;
	width: 100%;
	
	background: var(--color-default);
	padding-bottom: 20px;
	border-radius: 0 0 32px 32px;
}

.login-center .login-content {
	padding: 55px 40px 20px 40px;
	line-height: 25px;
	text-align: center;
	display: block;
}

.login-content p {
	color: var(--color-emphasis);
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-top: 0px;
}


fieldset {
	width:94%;
	border: 2px solid rgba(0, 0, 0, 0.1);
	margin:auto;
	border-radius: 12px;
}

legend {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	background: var(--color-default);
	color: var(--color-primary);
	padding: 0 10px;
}
.login.content.lostpw legend {
	color: var(--color-emphasis);
	
}


.inlogfield{
	display: inline-flex;
	height: 44px;
	width: 90%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 0px 10px 0px 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	outline: 0;
	color: var(--color-primary); 
	float: left;
}
.inlogfield * {
	padding: 2px;
}
.inlogfield:focus {
	border-color: var(--color-primary);
}

.login1{
	float: left;
	width: 120px;
	padding-top: 10px;
	text-align: right;
}


.login2{
	float: right;
	width: 300px;
	text-align: left;
}

input.login-button{
	cursor: pointer;
	font-family: var(--font-heading);
	opacity:1;
	margin: 20px auto;
	display: block;
	color: #fff;
	font-weight: 500;
	text-shadow: none;
	text-decoration: none;
	font-size: 18px;
	line-height: 30px;
	background: none;
	text-align: center;
	letter-spacing: 0px;
	border: 0px;
	border-radius: 8px;
	padding:1% 15% 1.5% 15%;
	opacity: 1;
	
	position:relative;
	background: var(--color-primary);
	opacity: 1;
}
.login-button:hover {
	opacity: 0.9;
	background: var(--color-primary);
}

.login-lost {
	display: block;
	margin-top: 1.7em;
	font-size: 14px;
}

.login-lost-button {
	cursor: pointer;
	font-family: var(--font-heading);
	opacity:1;
	margin: 20px auto;
	display: block;
	color: #fff;
	font-weight: 500;
	text-shadow: none;
	text-decoration: none;
	font-size: 18px;
	line-height: 30px;
	background: none;
	text-align: center;
	letter-spacing: 0px;
	border: 0px;
	border-radius: 8px;
	padding:1% 15% 1.5% 15%;
	opacity: 1;
	
	position:relative;
	background: var(--color-primary);
	opacity: 1;
}
.login-lost-button:hover {
	opacity: 0.94;
	background: var(--color-primary);
}



	@media (max-width: 660px) {
		body {
			padding-bottom: 0px;
		}
		.page-container-shape {
			position: absolute;
			width: 100%;
			height: 100%;
			top: -50px;
			left: -50px;
			mix-blend-mode: overlay;
			background-image: url('../images/icon-outline-primary.svg');
			background-repeat: no-repeat;
			background-size: cover;
			background-position: bottom right;
			z-index: 2;
		}
		.login-top {
			display: flex;
			align-items: center;
			justify-content: center;
			flex-wrap: wrap;
		}
		.login-slogan {
			display: none;
		}
		.login-container {
			position: relative;
			top: auto;
			left: auto;
			transform: translate(0%, 0%);
			margin: 40px auto;
			width: 94%;
		}
		.login1{
			float: left;
			width: 100%;
			text-align: center;
		}
		.login2{
			float: left;
			width: 100%;
			text-align: center;
		}
		.inlogfield{
	
			float: none;
		}
	}

.clearer {
	height: 0px;
	font-size: 0px;
	line-height: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}

.clearer25 {
	height: 25px;
	font-size: 0px;
	line-height: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}


.clearer15 {
	height: 15px;
	font-size: 0px;
	line-height: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}


.clearer45 {
	height: 45px;
	font-size: 0px;
	line-height: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}


.clearer35 {
	height: 35px;
	font-size: 0px;
	line-height: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}


