/* Reset basic styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Body styles */
body {
	font-family: 'Arial', sans-serif;
	background-color: #f4f7fc;
	color: #333;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
}

/* Header styles */
header {
	background-color: #007BFF;
	color: white;
	text-align: center;
	padding: 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	animation: fadeIn 2s ease-in-out;
}

header h1 {
	font-size: 2.5rem;
}

header p {
	font-size: 1.2rem;
}

/* Main Content */
main {
	flex: 1;
	padding: 2rem;
}

.form-container {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	animation: slideUp 1s ease-in-out;
}

.form-container h2 {
	margin-bottom: 1.5rem;
	font-size: 2rem;
	color: #007BFF;
	text-align: center;
}

label {
	font-size: 1rem;
	color: #555;
	display: block;
	margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 0.8rem;
	margin-bottom: 1.5rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
	border-color: #007BFF;
}

.submit-btn {
	background-color: #28a745;
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.1rem;
	transition: background-color 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background-color: #218838;
}

/* Footer Styles */
footer {
	background-color: #343a40;
	color: white;
	text-align: center;
	padding: 1rem;
	position: relative;
	bottom: 0;
	width: 100%;
}

footer p {
	font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
