html,body {
	height: 100%;
	width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    background-image: url(assets/bg2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a {
	color: rgb(65, 144, 219);
    font-weight: bold;
}

.logo {
	position: absolute;
    right: 3rem;
    top: 50px;
    width: 150px;
}

.form-container {
    max-width: 850px;
    margin: 1rem auto;
    background-color: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
	overflow-y: auto;
}

h1 {
    color: rgb(65, 144, 219);
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

input:not([type="checkbox"]), select {
    width: 50%;
    padding: 12px;
	margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

select {
	width: 54%;
}

input:focus, select:focus {
    border-color: rgb(65, 144, 219);
    outline: none;
}

button {
    width: 50%;
    padding: 12px;
    background-color: rgb(65, 144, 219);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #4c7ab7;
}

.puntenlijst {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.puntenlijst li {
	width: 50%;
	margin-bottom: 0.5em;
}


@media (max-width: 1300px) {
	.logo {
		width: 100px;
		position: static;
	}
	.form-container {
		margin: 1rem auto;	
	}
}

@media (max-width: 500px) {
	input:not([type="checkbox"]), select {
		width: 100%;
	}
}
