body {
	font-family: 'Inter', sans-serif;
	background-color: #f3f4f6;
	margin: 0;
}

.main-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1rem;
	min-height: 100vh;
	box-sizing: border-box;
}

.form-wrapper {
	width: 100%;
	max-width: 42rem;
	border-radius: 0.5rem;
	background-color: white;
	padding: 2.5rem;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

.form-image {
	margin-bottom: 3rem;
	width: 50%;
	border-radius: 0.5rem;
}

.form-header {
	margin-bottom: 2rem;
	text-align: center;
}

.form-title {
	font-weight: 600;
	color: #1f2937;
}

.form-description {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.5;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #4b5563;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	border-radius: 0.375rem;
	border: 1px solid #d1d5db;
	padding: 0.75rem;
	font-size: 0.875rem;
	color: #1f2937;
	box-sizing: border-box;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: #884ea0;
	box-shadow: 0 0 0 1px #884ea0;
	outline: none;
}

.consent-group {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.form-checkbox {
	height: 1rem;
	width: 1rem;
	color: #884ea0;
}

.consent-label {
	margin-left: 0.5rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #4b5563;
}

.submit-btn {
	width: 100%;
	border-radius: 0.375rem;
	background-color: #884ea0;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	color: white;
	border: none;
	cursor: pointer;
	transition:
		background-color 0.3s,
		box-shadow 0.3s;
}

.submit-btn:hover {
	background-color: #884ea0;
}

.submit-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5);
}

@media (max-width: 640px) {
	.main-container {
		padding: 1rem;
	}
	.form-wrapper {
		padding: 1.5rem;
	}
	.form-title {
		font-size: 1.5rem;
	}
}
