* { box-sizing: border-box; }
body {
	font-family: system-ui, -apple-system, sans-serif;
	margin: 20px;
	padding: 0;
	background: #f0f2f5;
}
form {
	max-width: 400px;
	margin: 40px auto;
	background: white;
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
input, button {
	width: 100%;
	padding: 14px 12px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-size: 16px;
}
button {
	background-color: #ff6600;
	color: white;
	font-weight: bold;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
button:hover {
	background-color: #e55a00;
}
button:disabled {
	background-color: #aaa;
	cursor: not-allowed;
}
h2 {
	text-align: center;
	margin-top: 0;
}
p {
	text-align: center;
	margin-top: 20px;
}
a {
	color: #ff6600;
	text-decoration: none;
}
#email-status {
	font-size: 14px;
	margin-top: -12px;
	margin-bottom: 12px;
	display: block;
	text-align: center;
}