#b2b-inquiry-form, #b2b-inquiry-form * {
	box-sizing: border-box !important;
	max-width: 100% !important;
}

.dst-b2b-form-wrapper, .dst-b2b-form-wrapper * {
	box-sizing: border-box !important;
	max-width: 100% !important;
}

.dst-b2b-form-wrapper {
	width: 100% !important;
	overflow-x: clip !important;
	word-wrap: break-word;
	overflow-wrap: break-word;
	background: #ffffff;
	padding: 35px 30px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04);
	border: 1px solid #E2E8F0;
	font-family: system-ui, -apple-system, sans-serif;
}

.dst-b2b-form-title {
	font-size: 22px;
	color: #0B1528;
	font-weight: 800;
	margin-bottom: 25px;
	border-bottom: 3px solid #F4B836;
	padding-bottom: 12px;
	display: inline-block;
}

.dst-form-group {
	margin-bottom: 22px;
	width: 100%;
}

.dst-form-label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #1E293B;
	margin-bottom: 8px;
}

.dst-form-control {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #CBD5E1;
	border-radius: 8px;
	font-size: 16px;
	color: #0F172A;
	transition: all 0.3s ease;
	background: #F8FAFC;
}

.dst-form-control::placeholder {
	color: #94A3B8;
	font-size: 15px;
}

.dst-form-control:focus {
	outline: none;
	border-color: #2552E4;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(37,82,228,0.1);
}

.dst-form-file {
	font-size: 15px;
	width: 100%;
	color: #475569;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dst-form-file::file-selector-button {
	padding: 10px 18px;
	margin-right: 15px;
	border: 1px solid #2552E4;
	background: #eff4ff;
	color: #2552E4;
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.dst-form-file::file-selector-button:hover {
	background: #2552E4;
	color: #ffffff;
}

.dst-file-hint {
	display: block;
	font-size: 13px;
	color: #64748B;
	margin-top: 8px;
	line-height: 1.5;
}

.dst-honeypot {
	display: none;
}

.dst-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 25px;
	margin-bottom: 25px;
	background: #f8fafc;
	padding: 15px;
	border-radius: 8px;
	border: 1px dashed #cbd5e1;
	width: 100%;
}

.dst-checkbox-group input[type="checkbox"] {
	margin-top: 4px;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: #2552E4;
}

.dst-form-label-inline {
	font-size: 12px;
	color: #334155;
	font-weight: normal;
	line-height: 1.6;
	cursor: pointer;
}

.dst-form-label-inline a {
	color: #2552E4;
	text-decoration: underline;
	font-weight: 600;
}

.dst-form-label-inline a:hover {
	color: #0B1528;
}

.dst-b2b-submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: #F4B836;
	color: #0B1528;
	font-weight: 800;
	padding: 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s;
	font-size: 16px;
	box-shadow: 0 4px 10px rgba(244,184,54,0.3);
}

.dst-b2b-submit-btn:hover {
	background: #0B1528;
	color: #ffffff;
	box-shadow: 0 6px 15px rgba(11,21,40,0.3);
	transform: translateY(-2px);
}

.dst-b2b-submit-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.dst-alert {
	padding: 16px 20px;
	border-radius: 8px;
	margin-bottom: 25px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	width: 100%;
}

.dst-alert strong {
	font-weight: 800;
}

.dst-alert-success {
	background: #ECFDF5;
	color: #065F46;
	border: 1px solid #A7F3D0;
}

.dst-alert-error {
	background: #FEF2F2;
	color: #991B1B;
	border: 1px solid #FECACA;
}

@media (max-width: 768px) {
	.dst-b2b-form-wrapper {
		padding: 20px 15px !important;
	}
	.dst-form-file::file-selector-button {
		display: block;
		margin-bottom: 10px;
		width: 100%;
		text-align: center;
	}
	.dst-checkbox-group {
		padding: 12px;
		gap: 8px;
	}
	.dst-form-label-inline {
		font-size: 11px;
	}
	.dst-b2b-submit-btn {
		font-size: 14px;
		padding: 14px;
	}
}
