.container {
	margin: auto;
	padding: 20px;
	max-width: 600px;
	text-align: center;
}

h1 {
	font-size: 36px;
	margin-bottom: 30px;
}

form {
	margin-bottom: 30px;
}

label {
	font-size: 24px;
}

input[type=text] {
	padding: 10px;
	font-size: 18px;
	border-radius: 5px;
	border: none;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

button {
	padding: 10px;
	font-size: 18px;
	background-color: #008CBA;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: #005f7a;
}

p {
	font-size: 24px;
	font-weight: bold;
}
