.headerContainer,
main,
.footerContainer {
	max-width: 1064px;
}

main {
	flex: 1;
	margin: 0 auto;
	padding: 16px;
	width: 80%;
}

.breadCrumbContainer {
	width: 100%;
}

.breadCrumbContainer nav ul {
	display: flex;
}

.breadCrumbContainer nav ul li {
	color: #666666;
	font-size: 12px;
}

.breadCrumbContainer nav ul li a {
	text-decoration: none;
	color: #666666;
	cursor: pointer;
}

.breadCrumbContainer nav ul li:not(:first-child)::before {
	content: ">";
	font-size: 8px;
	line-height: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 8px;
}

section h2 {
	font-size: 25px;
	margin: 24px 0 0 0;
}

.subtytle {
	color: #666666;
	font-size: 13px;
	margin-top: 4px;
}

.formContainer {
	background: #ffffff;
	border: 1px solid#e5e7eb;
	border-radius: 16px;
	box-shadow: 1px 1px 2px 2px #e5e7eb;
	margin-top: 48px;
	padding-bottom: 16px;
}

table {
	border-collapse: separate;
	border-spacing: 32px 16px;
	width: 100%;
}

th {
	font-size: 12px;
	text-align: left;
	width: 100px;
}

tr:last-child {
	vertical-align: top;
}

input,
textarea {
	border: 1px solid#e5e7eb;
	border-radius: 8px;
	padding: 8px;
}

.name {
	width: 20%;
}

.email,
.subject {
	width: 35%;
}

.description {
	width: 70%;
	resize: none;
}

.buttonContainer {
	margin-top: 32px;
	text-align: right;
}

.clearButton {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	cursor: pointer;
	font-size: 12px;
	margin-right: 16px;
	padding: 8px;
}

.confirmButton {
	background: #1f64e4;
	border: none;
	border-radius: 8px;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	padding: 8px;
	margin-right: 32px;
	text-decoration: none;
}

@media (max-width: 800px) {
	th,
	td {
		display: block;
		margin-bottom: 10px;
		width: 100%;
	}

	.name {
	width: 35%;
	}

	.email,
	.subject {
		width: 70%;
	}

	.description {
		width: 85%;
	}
}