body {
	background-image: url(/img/bg.png);
	background-repeat: repeat;	
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #000;
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center; /* horizontaal centreren */
	align-items: center;     /* verticaal centreren */
}

textarea:focus, input:focus{
    outline: none;
}

input[type='submit'],[type='reset'],[type='checkbox'],[type='radio'],[type='image'],[type='button']{
	cursor:pointer;
	accent-color: #333;
}

#login {
	background-color: #e4e4e4;
	margin: 0 auto;
	height: 190px;
	width: 658px;
	border-style: solid;
	border-width: 3px;
	border-color: #000;
	border-radius: 15px;
	position: relative;
/*	margin-top: 150px;
*/	padding: 0;
}

#left {
	float: left;
	height: 190px;
	width: 258px;
	line-height:190px;
}

#right {
	float: right;
	height: 190px;
	width: 400px;
}

a {
	color: #FFF;
	text-decoration: none;
}

.button {
	padding: 5px;
	height: auto;
	border: 2px solid;
	border-radius: 10px;
	text-align: center;
	color: #000;
    background-color: #fff;
	font-size:  15px;
	font-weight: bold;
	cursor: pointer;
}

@font-face {
	font-family: DottedFont;
	src: url(Digit.ttf);
}

.blink_text {
	animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}