body {
	margin: 0;
	padding: 0;
}

#background-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	filter: blur(5px);
}

#background-container img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

#container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 50px auto;
	width: auto;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
}

h1 {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
}

input[type="password"] {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
	box-sizing: border-box;
	font-size: 16px;
}

#button-container {
	display: flex;
	justify-content: center;
}

button {
	background-color: #4CAF50;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
}

button:hover {
	background-color: #3e8e41;
}