body {
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
}

.container {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	text-align: center;
	max-width: 500px;
	width: 90%;
}

h3 {
	margin-top: 0;
	margin-bottom: column;
	color: #333;
}

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

.form-group {
	margin-bottom: 15px;
	width: 100%;
}

input[type="text"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}

input[type="submit"] {
	background: #005a9c;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.3s;
}

input[type="submit"]:hover {
	background: #0069d9;
}
