/*
---------------------------
Mijn Inlogscherm
---------------------------
*/

body {
    font-family: 'quasimoda';
	background-color: #fff;
	color: rgba(9, 36, 112, 0.7);
	height: 100%;
}
::selection {
	background-color: rgba(9, 36, 112, 0.6);
	color: #fff;
	}

.ui.container {
	width: 1016px;
}

@media screen and (min-width: 768px) {
	.ui.container {
		padding: 0 20px;
	}
}

.topbar {
	height: 80px;
	background: transparent;
	border-bottom: none;
	position: relative;
	z-index: 100;
}
.topbar > .container {
	position: relative;
	/*
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	*/
	height: 100%;
}
.topbar .ui.secondary.menu {
	margin-top: 0;
	margin-right: -20px;
	margin-bottom: 0;
}
.topbar .ui.menu .item {
	color: #81878c;
}
.topbar .ui.menu .item:hover {
	color: #61676c;
}
.topbar .ui.menu .item .dropdown.icon {
	color: #2ea9ba;
}

.brand {
	margin: 0;
	position: absolute;
	top: 0;
	left: 20px;
}

.brand a {
	display: block;
	width: 82px;
	height: 109px;
	background: url("../images/login-brand.png") no-repeat left top;
	background-size: 82px 109px;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}

.loginscreen {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: absolute;
	top: 0; right: 0; left: 0; min-height: 100%;
	background: #fff;
	background-repeat: no-repeat;
	background-size: 1600px auto;
	background-position: 50% -100px;
	background-image: url('../../../images/body-back.jpg');
}


.loginscreen .grid {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

h3.ui.header {
	font-family: 'quasimoda';
	font-size: 24px;
	font-weight: 800;
	margin-top: 5px !important;
	color: #092470;
	margin-bottom: 1em;
}

.ui.input {
	margin-bottom: 1em;
}
.ui.button {
	margin-top: 2em;
}

.lost {
	display: inline-block;
	margin: 1em 0;
	text-decoration: underline;
}

.ui.segment {
	padding: 30px 40px;
	border: 1px solid rgba(12, 14, 33, 0.144);
	box-shadow: 0px 8px 8px -4px rgba(12, 14, 33, 0.158);
	margin-bottom: 40px;
	border-radius: 10px;
	
}
.ui.positive.button, .ui.positive.buttons .button {
	font-family: 'quasimoda';
	text-transform: uppercase;
	padding: 18px 20px 18px;
	color: #ffffff;
background-color: #33ccff;
box-shadow: 0 0 10px rgba(143, 192, 69,0),  0px 4px 4px -2px rgba(143, 192, 69,0.1);
	border-radius: 5px;
}
.ui.positive.button:hover, .ui.positive.buttons .button:hover {
	color: #ffffff;
	background-color: rgb(143, 192, 69);
	box-shadow: 0 0 10px rgba(143, 192, 69,0.5);
}
.ui.input input {
	font-size: 18px;
	font-family: 'quasimoda';
	padding: 0.75rem 1em;
	border-radius: 5px;
	border: 1px solid rgba(11,80,87,0.2) !important;
}
.ui.input input:focus {
	border: 1px solid rgba(11,80,87,1) !important;
}

.intro {
	padding-top: 40px;
	padding-right: 50px;
	padding-bottom: 20px;
	padding-left: 40px;
	text-align: center;
}
.loginscreen img {
	max-width: 200px;
	margin-bottom: 0px;
}
.intro, .intro .ui.header {
	color: #092470;
	font-family: 'quasimoda';
	margin: 15px 0;
}
.intro .ui.header {

	font-size: 42px;
}
.ui.segment p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #092470;
}

.intro .ui.button {
	font-size: 16px;
	font-weight: 700;
	margin-top: 1em;
}


.prelude {
	font-size: 15px;
	
	opacity: 0.5;
	font-weight: 700;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
	.ui.segment {
		padding: 20px 20px;
		border: 1px solid rgba(12, 14, 33, 0.144);
		box-shadow: 0px 8px 8px -4px rgba(12, 14, 33, 0.158);
		margin-bottom: 0;
		border-radius: 10px;
		
	}
	.intro {

		padding: 20px 20px;
	}
	.intro p {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;

	}
	.loginscreen img {
		max-width: 80%;
		margin-bottom: 20px;
	}
	.topbar .ui.menu {
		display: none;
	}
}

