body {
	margin:0;
	background-color:#f1f1f1;
	background-image: linear-gradient(to top, #ccc, transparent);
	height:100%;
}

a {
	color:#2099a1;
	cursor:pointer;
	text-decoration: underline;
}

a:hover {
	color:#27cbd5;
}

.content {
	z-index:1;
	width:100%;
	height:100%;
	overflow-y: auto;
	display:flex;
	top:0px;
	left:0px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.content::after {
	content:"© 2022 - 2024 3DIMERCE BV";
	font-family: 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
	font-size:10px;
	letter-spacing: 0.2px;
	line-height: 215px;
	color:#707070;
	text-align: center;
	background-image:url("./img/logo_dark.png");
	background-size:contain;
	width:200px;
	height:150px;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	overflow:hidden;
	flex-shrink:0;
}

.content .box {
	position: relative;
	width:400px;
	height:300px;
	background-color:#fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
	padding:50px;
	font-size: 12px;
	font-family: 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
	border-top:5px solid #000;
	flex-shrink:1;
}

.content .box h1 {
	font-family: 'Typold Regular';
	display:block;
	font-size:20px;
	font-weight: bold;
	margin-bottom:10px;
}
.content .box > .input {
	margin-top: 30px;

}

.content input {
	display: block;
	position: relative;
	border: 0;
	background-color: #f3f3f3;
	border-radius: 3px;
	padding: 5px;
	margin: auto;
	margin-bottom: 15px;
	width: 100%;
	height:25px;
	outline-width: 0;
}

.content input[valid=false] {
	background-color:#eed1d1;
}

.content .buttons {
	position: absolute;
	bottom:50px;
	width:calc(100% - 100px);
	display:flex;
	justify-content: flex-end;
}

#cancel {
	text-decoration: none;
	color:#000;
	padding:5px 10px 5px 10px;
}
#cancel:hover {
	color: #27cbd5;
}

.content .button {
	position: relative;
	margin-left:20px;
	display:inline-block;
	background-color: #000;
	color: #fff;;
	padding:5px 10px 5px 10px;
	cursor: pointer;
	font-size: 12px;
}

.content .button::after {
	display: block;
	content: "";
	mix-blend-mode:lighten;
	background-color: #27cbd5;
	position: absolute;
	top:0;
	left:0;
	width:0%;
	height:100%;
	transition: 100ms;
	pointer-events: none;
}	

.content .button:hover {
	color: #fff;
}
.content .button:hover:after {
	width:100%;
}


#message {
	color:#ca4009;
}