.epb-form-wrap {
	max-width: 760px;
	margin: 30px auto;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(35, 72, 150, 0.12);
	padding: 32px 30px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.epb-title {
	margin: 0 0 6px;
	font-size: 26px;
	color: #234896;
	font-weight: 700;
}

.epb-subtitle {
	margin: 0 0 24px;
	color: #555;
	font-size: 15px;
}

.epb-message {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-size: 14px;
}

.epb-message.success {
	background: #e6f4ea;
	color: #1e7e34;
	border: 1px solid #b6e4c2;
}

.epb-message.error {
	background: #fdeaea;
	color: #b02a2a;
	border: 1px solid #f3c1c1;
}

.epb-section {
	border: 1px solid #e3e7f1;
	border-radius: 10px;
	padding: 14px 18px;
	margin-bottom: 16px;
	background: #f8f9fd;
}

.epb-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 16px;
	color: #234896;
	cursor: pointer;
}

.epb-toggle input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #234896;
}

.epb-sub-block {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed #d6dcec;
}

.epb-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.epb-field {
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
}

.epb-field-full {
	flex: 1 1 100%;
}

.epb-field label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}

.epb-field input,
.epb-field select,
.epb-field textarea {
	padding: 10px 12px;
	border: 1px solid #d6dcec;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	color: #222;
}

.epb-field input:focus,
.epb-field select:focus,
.epb-field textarea:focus {
	outline: none;
	border-color: #234896;
	box-shadow: 0 0 0 3px rgba(35, 72, 150, 0.15);
}

.epb-line-total {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #234896;
	text-align: right;
}

.epb-grand-total {
	background: #eef1fb;
	border: 1px solid #d6dcec;
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 18px;
	font-size: 18px;
	font-weight: 700;
	color: #234896;
	text-align: right;
}

.epb-grand-total small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #777;
	margin-top: 4px;
}

.epb-submit-btn {
	width: 100%;
	background: #234896;
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-size: 17px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.epb-submit-btn:hover {
	background: #1a3673;
}

.epb-submit-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

@media (max-width: 600px) {
	.epb-form-wrap {
		padding: 22px 16px;
	}
	.epb-row {
		flex-direction: column;
	}
}
