.ccf-2106-wrapper {
	font-family: inherit;
	padding: 10px;
}

.ccf-2106-container {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #C2D8E5; /* Default border matching right header */
}

@media (min-width: 768px) {
	.ccf-2106-container {
		flex-direction: row;
	}
}

.ccf-2106-left,
.ccf-2106-right {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ccf-2106-left-inner {
	padding: 30px;
}

.ccf-2106-left-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 20px 0;
	text-align: center;
}

.ccf-2106-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ccf-2106-list-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.ccf-2106-list-item:last-child {
	margin-bottom: 0;
}

.ccf-2106-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.ccf-2106-icon svg {
	width: 100%;
	height: 100%;
}

.ccf-2106-text {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
}

.ccf-2106-divider {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
}

@media (min-width: 768px) {
	.ccf-2106-divider {
		width: 1px;
		height: auto;
		margin: 20px 0;
	}
}

.ccf-2106-right-header {
	padding: 15px;
	text-align: center;
	border-top-right-radius: 0;
}

@media (min-width: 768px) {
	.ccf-2106-right-header {
		border-top-right-radius: 12px;
	}
}

.ccf-2106-right-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.ccf-2106-right-inner {
	padding: 20px 30px 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ccf-2106-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ccf-2106-input {
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	border: 2px solid;
	font-weight: 600;
	font-size: 14px;
	outline: none;
	background: #ffffff;
}

.ccf-2106-input:focus {
	border-color: #B45A34; /* fallback */
}

.ccf-2106-submit {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 30px;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
	margin-top: 5px;
}

.ccf-2106-submit:hover {
	opacity: 0.9;
}