* {
    margin: 0%;
    padding: 0%;
}

.header {
    display: flex;
    width: 100%;
    background-color: black;
}

h1 {
    color: #6F00FF;
    padding-left: 5%;
    font-size: 50px;
    font-size: bold;
}

h2 {
    padding-top: 10px;
    color: white;
    padding-left: 50%;
    font-size: 30px;
}

.register {
    margin-top: 7px;
    height: 30px;
    margin-left: 55%;
    width: 10%;
    background-color: white;
    color: rgb(255, 255, 255);
    border-radius: 15px;
    font-size: 20px;
    padding-top: 5px;
    text-align: center;
}

.uitloggen {
    margin-top: 7px;
    height: 30px;
    margin-left: 25px;
    width: 10%;
    background-color: #6F00FF;
    color: rgb(255, 255, 255);
    border-radius: 15px;
    font-size: 20px;
    padding-top: 5px;
    text-align: center;
}

.register a:link {
    text-decoration: none;
    color: black;
}

.register a:visited {
    text-decoration: none;
    color: black;
}

.register a:hover {
    text-decoration: none;
    color: black;
}

.register a:active {
    text-decoration: none;
    color: black;
}

.uitloggen a:link {
    text-decoration: none;
    color: white;
}

.uitloggen a:visited {
    text-decoration: none;
    color: white;
}

.uitloggen a:hover {
    text-decoration: none;
    color: white;
}

.uitloggen a:active {
    text-decoration: none;
    color: white;
}

body {
    background-image: url(assets/background.png)
}

body {
    width: 100%;
}

.form-wrapper {
    border: 3px solid white;
    padding: 60px 40px;
    width: 450px;
    margin: 38.5px auto;
    border-radius: 10px;
    text-align: center;
    background-color: transparent;
}

input.gebruikersnaam,
input.password {
    background-color: #D9D9D9;
    color: white;
    font-weight: bold;
    opacity: 80%;
    border: none;
    border-radius: 50px;
    width: 100%;
    height: 70px;
    font-size: 30px;
    text-align: center;
}

.inloggen {
    background-color: #6F00FF;
    color: white;
    font-size: 30px;
    font-weight: bold;
    width: 80%;
    height: 70px;
    border-radius: 50px;
    margin-top: 20px;
}

.styled-button {
    display: inline-block;
    background-color: white;
    color: black;
    font-size: 30px;
    font-weight: bold;
    width: 300px;
    height: 70px;
    border-radius: 50px;
    margin-top: 15px;
    text-decoration: none;
}

label {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

::placeholder {
    color: white;
}

.footer {
    position: absolute;
    bottom: 50;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border-top: 1px solid #444;
}