<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.inner-content table {
	width: 600px;
	margin: 0 auto;
}

.inner-content table .inputTxt {
	border: solid 1px #CFCFCF;
	width: 380px;
	height: 25px;
}

.inner-content table .inputTextarea {
	width: 380PX;
	height: 100px;
	border: solid 1px #CFCFCF;
}

.inner-content table b {
	color: #7f0909;
}

.inner-content table .submitBtn,
.inner-content table .resetBtn {
	width: 100px;
	height: 36px;
	color: #FFFFFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
	outline: none;
}

.inner-content table .submitBtn {
	background: #010101;
	margin-right: 20px;
	border: none;
}

.inner-content table .submitBtn:hover {
	background: #343434;
}

.inner-content table .submitBtn:focus {
	outline: none;
}

.inner-content table .resetBtn {
	background: #AFAFAF;
	border: none;
}

.inner-content table .resetBtn:hover {
	background: #898989;
}

.inner-content table .resetBtn:focus {
	outline: none;
}

button.commonBtn {
	color: #fff;
	border: none;
	position: relative;
	height: 40px;
	font-size: 15px;
	padding: 0 40px;
	cursor: pointer;
	transition: 800ms ease all;
	outline: none;
}

button.submitBtn1 {
	background: #D7A849;
}

button.resetBtn1 {
	background: #898989;
	margin-left: 15px;
}

button.submitBtn1:hover {
	background: #fff;
	color: #D7A849;
}

button.resetBtn1:hover {
	background: #fff;
	color: #898989;
}

button.submitBtn1:before,
button.submitBtn1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 2px;
	width: 0;
	background: #D7A849;
	transition: 400ms ease all;
}

button.resetBtn1:before,
button.resetBtn1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 2px;
	width: 0;
	background: #898989;
	transition: 400ms ease all;
}

button.commonBtn:after {
	right: inherit;
	top: inherit;
	left: 0;
	bottom: 0;
}

button.commonBtn:hover:before,
button.commonBtn:hover:after {
	width: 100%;
	transition: 800ms ease all;
}</pre></body></html>