	html, body {
		height: 100%;
	}

    body { 
		background-color: #000;
		background: url('../images/sk.jpg') no-repeat center fixed; 
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
    }

	.vertical-center {
		height:100%;
		width:100%;
		
		text-align: center;  /* De inline(-block) elementen horizontaal uitlijnen */
		font: 0/0 a;         /* De ruimte tussen de inline(-block) elementen verwijderen */
	}
	
	.vertical-center:before {    /* een pseudo inline block element die de volledige hoogte bedraagt */
		content: ' ';
		display: inline-block;
		vertical-align: middle;
		height: 100%;
	}
	
	.vertical-center > .container {
		max-width: 100%;
		
		display: inline-block;
		vertical-align: middle;  /* verticaal uitlijnen van het inline element */
		font: 16px/1.5 Verdana, Arial, Helvetica, sans-serif;        /* Font resetten */
	}

	h1 {
		font-size: 20px;
		font-weight: 700;
	}
	
	h2 {
		font-size: 16px;
		font-weight: 600;
		line-height: normal;
		margin-top: 0;
		margin-bottom: 16px;
	}

    a,
    a:visited {
		color: #000;
    }

form{
    height: 388px;
    width: 428px;
    background-color: rgba(255,255,255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}
form *{
    font-family: 'Poppins',sans-serif;
    color: #000000;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h1 {
    font-size: 55px;
	font-family: "Great Vibes", Arial, sans-serif;	
    font-weight: 500;
    line-height: 30px;
    text-align: center;
	color: #ffffff;
	text-shadow: 1px 1px #000000;
}

label{
    display: block;
    margin-top: 50px;
    font-size: 16px;
    font-weight: 500;
	text-align: center;
}
.fout{
    display: block;
    margin-top: 14px;
	margin-bottom: -18px;
    font-size: 12px;
    font-weight: 500;
	text-align: center;
}
input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.85);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
	text-align: center;
}
::placeholder{
    color: #000000;
}
button{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}