html,
body {
	background-color: rgb(251, 243, 228);
	font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
	margin: 0;
	height: 100%;
}

p {
	margin: 0;
	padding: 0;
}

label {
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera, and Edge */
}

.banner {
	width: 100%;
	max-height: 22.523995734091717vw;
	height: 160.1706363313189px;
	background-image: url('banner.jpg');
	background-size: cover;
	background-position: center;

	border: 1px solid rgb(218, 220, 224);
	border-radius: 8px;
	margin-top: 12px;
}

.main {
	margin: auto;
	max-width: 90vw;
	width: 640px;
}

.form-container {
	margin-top: 12px;
	background-color: #fff;
	border: 1px solid rgb(218, 220, 224);
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 24px;
	padding-top: 22px;
	position: relative;
	padding-bottom: 16px;
}

.form-head {
	background-color: rgb(229, 176, 73);
	color: rgba(0, 0, 0, 1);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	height: 10px;
	left: -1px;
	position: absolute;
	top: -1px;
	width: calc(100% + 2px);
}

.form-desc {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	justify-content: center;
	font-size: 0.95rem;
}

.btn-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	justify-content: center;
	align-items: center;
}

.form-title {
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.form-btn {
	background-color: rgb(240, 240, 240);
	color: #000;
	border-radius: 8px;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 1.2em;
	font-weight: 400;
	line-height: 1.25;
	width: 60%;
	text-align: center;
	display: block;
	margin-top: 12px;
	border: 1px solid rgb(118, 118, 128);
}

.nowork {
	background-color: rgb(78, 76, 76);
	pointer-events: none;
	/* 禁用點擊事件 */
}

.must::after {
	content: "*";
	color: red;
	margin-left: 2px;
}

#total_fee {
	font-size: 1.2em;
	font-weight: 400;
	line-height: 1.25;
	text-decoration: none;
}

input[type="text"],
input[type="number"] {
	width: 60%;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid rgb(32, 33, 36);
	padding: 8px 0px 0px 4px;
	outline: none;
	font-size:1rem;
	line-height: 1.5;
}

input::placeholder {
	font-weight: bold;
	opacity: 0.5;
	color: red;
  }
.footer {
	margin-top: 12px;
	background-color: #fff;
	border: 1px solid rgb(218, 220, 224);
	border-radius: 8px;
	padding: 24px;
	padding-top: 22px;
	position: relative;
	padding-bottom: 16px;
	text-align:center;
}

.submit-button {
	background-color: rgba(229, 176, 73,0.2);
	color: rgba(0, 0, 0, 1);
	border:1px solid rgb(229, 176, 73);
	border-radius: 8px;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	
	text-align: center;
	display: block;
	margin-top: 12px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
}