* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background: #f5f7fa;
	padding: 40px 20px;
}

.form-container {
	max-width: 700px;
	margin: auto;
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
}

label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold;
}

input, select, textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 6px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
}

input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

textarea {
	min-height: 100px;
}

.two-col {
	display: flex;
	gap: 20px;
}

.two-col>div {
	flex: 1;
}

button {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	background: #667eea;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease;
}

button:hover {
	background: #5a6fdc;
}

.error {
	color: red;
	font-size: 12px;
	margin-bottom: 10px;
}

@media ( max-width : 600px) {
	.two-col {
		flex-direction: column;
	}
}