
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f5f7fa;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
}

.container {
	background: white;
	max-width: 600px;
	width: 100%;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1 {
	margin-top: 0;
	text-align: center;
	font-size: 2rem;
}

p {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.mt-30 {
	margin-top: 30px;
}

label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

input,
textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #dcdcdc;
	border-radius: 6px;
	font-size: 16px;
}

textarea {
	resize: vertical;
	min-height: 120px;
}

button {
	width: 100%;
	padding: 14px;
	border: none;
	background: #2E41FF;
	color: white;
	font-size: 16px;
	font-weight: bold;
	border-radius: 6px;
	cursor: pointer;
	transition: all .2s;
}

button:hover {
	background: #2631A1;
}

.hidden-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}
