/* login.css */

body {
    font-family: Arial, sans-serif;
    background: rgb(14,157,0);
	background: radial-gradient(circle, rgba(14,157,0,1) 0%, rgba(0,36,4,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login {
    background-color: #cfcfd1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center; /* Zorgt ervoor dat inhoud gecentreerd is */
}

h2 {
	text-align: center;
	margin: 10px;
	float: top;
}

form {
    text-align: center;
}

input[type="text"], input[type="password"], button {
    width: 100%;
    padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
    margin-right: 10% auto;
	margin-left: 10% auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
	box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #45a049;
}

@media screen and (max-width: 992px){
	.login {
		width: 80%;
		height: auto;
	}

	input[type="text"], input[type="password"], button {
		height: 80px;
		padding-top: 20px;
		padding-bottom: 20px;
		margin-bottom: 20px;
		margin-right: 5% auto;
		margin-left: 5% auto;
		font-size: 1.5em;
	}
	
	h2 {
		font-size: 2em;
	}
	
	button {
		height: 80px;
	}
}