<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background: #009966;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
*{
	font-family: sans-serif;
	box-sizing: border-box;
}

form {
	width: 500px;
	border: 2px solid #ccc;
	padding: 30px;
	background: #fff;
	border-radius: 15px;

}

h2 {
	text-align: center;
}
input {
	display: block;
	border: 2px solid #ccc;
	width: 80%;
	padding: 10px auto;
	border-radius: 5px;
}
label {
	color: #888;
	font-size: 24px;
	padding: 10px;
}
button {
	float: right;
	background: #555;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
}
button:hover{
	opacity: .7;
}
.error {
	background: #F2DEDE;
	color: #A94442;
	padding: 10px;
	width: 95%;
	border-radius: 5px;
}
	
	</pre></body></html>