#book-title, #book-description, #book-file, #category-select, .add-book-submit {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: rgba(127,72,12, .1);
	box-shadow: 0px 6px 8px 3px rgb(35 35 35 / 12%);
}
.add-book-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.fa-circle-question {
	color: #f19100;
}
.book-files-donwloads {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.book-file-box, .book-cover-box {
	width: 30%;
	display: flex;
	flex-direction: column;
}
.book-cover-box {
	text-align: right;
}
.add-book-labels {
	font-size: 20px;
	margin: 5px;
}
#cover-image-upload-btn, #book-file-upload-btn {
	background-color: #f19100;
	color: #fff;
	padding: 3px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0px 6px 8px 3px rgb(35 35 35 / 12%);
}
.add-book-submit {
	background-color: #f19100;
	color: #fff;
}
@media screen and (max-width: 1000px) {
	.add-book-labels {
		text-align: center;
	}
	.book-files-donwloads {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}
	.book-file-box, .book-cover-box {
		width: 40%;
	}
	.add-book-submit {
		background-color: #f19100;
		color: #fff;
		height: 40px;
	}
}