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

.test-form-page .test-header h1 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.test-form-page .test-header p {
	color: var(--text-light);
}

.test-form {
	background: var(--surface);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.question-block {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border);
}

.question-label {
	display: block;
	font-weight: 600;
	margin-bottom: 1rem;
}

.question-number {
	color: var(--primary);
	margin-right: 0.5rem;
}

.options {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.option-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--radius);
	transition: background-color 0.2s;
}

.option-label:hover {
	background-color: var(--background);
}

.option-label input[type="radio"] {
	accent-color: var(--primary);
}

.test-form .btn-primary {
	width: 100%;
	margin-top: 1rem;
}