body {
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
	color: #333;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	box-sizing: border-box;
}

.container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 20px;
	width: 90%;
	max-width: 400px;
	box-sizing: border-box;
}

h1 {
	color: #2c3e50;
	font-size: 24px;
	margin-bottom: 15px;
	text-align: center;
}

ul {
	padding-left: 20px;
	margin: 10px 0;
	list-style-type: disc;
}

ul li {
	margin-bottom: 5px;
	font-size: 16px;
}

a {
	color: #3498db;
	text-decoration: none;
	font-size: 16px;
	display: inline-block;
	margin: 10px 0;
	text-align: center;
}

a:hover {
	text-decoration: underline;
}

form {
	margin-top: 20px;
}

form label {
	display: block;
	margin-bottom: 15px;
	font-size: 16px;
}

form input[type="text"],
form input[type="password"] {
	width: 100%;
	padding: 12px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}

form button {
	background-color: #3498db;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
}

form button:hover {
	background-color: #2980b9;
}

@media (min-width: 768px) {
	.container {
		max-width: 500px;
		padding: 30px;
	}
}