* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

form {
	max-width: 500px;
	width: 100%;
	padding: 30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

h2 {
	text-align: center;
	color: #007bff;
	margin-bottom: 30px;
	font-family: 'Arial Black', sans-serif;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

td {
	padding: 10px;
	border-bottom: 1px solid #dee2e6;
}

td:first-child {
	width: 30%;
	font-weight: bold;
	vertical-align: top;
}

td:last-child {
	width: 70%;
	vertical-align: top;
}

select,
input[type="date"] {
	width: calc(100% - 4px);
	padding: 8px;
	margin-top: 5px;
}

input[type="checkbox"]+label {
	display: block;
}

input[type="submit"],
input[type="reset"] {
	display: inline-block;
	width: 48%;
	padding: 12px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
	background-color: #0056b3;
}

input[type="reset"] {
	background-color: #f00;
	color: #fff;
	margin-left: 2%;
}

@media (max-width: 768px) {
	form {
		padding: 20px;
	}
	td {
		padding: 5px;
	}
	input[type="submit"],
	input[type="reset"] {
		width: 100%;
		margin-left: 0;
	}
}