.clc-container {
	max-width: 900px;
	margin: auto;
	background: #fff;
	border-radius: 28px;
	padding: 42px;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

.clc-container *,
.clc-container *::before,
.clc-container *::after {
	box-sizing: border-box;
}

.clc-form-group {
	margin-bottom: 22px;
}

.clc-form-group label {
	display: block;
	margin-bottom: 10px;
	color: #222;
	font-size: 18px;
	font-weight: 500;
}

.clc-required {
	color: #d70000;
}

.clc-form input,
.clc-form select,
.clc-form textarea {
	width: 100%;
	height: 56px;
	border: 1px solid #E3E7EF;
	border-radius: 12px;
	padding: 0 18px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	outline: none;
	transition: 0.3s;
	background: #fff;
	color: #222;
}

.clc-form textarea {
	height: 120px;
	padding-top: 15px;
	resize: none;
}

.clc-form input:focus,
.clc-form select:focus,
.clc-form textarea:focus {
	border-color: #d70000;
}

.clc-form input.clc-invalid,
.clc-form select.clc-invalid,
.clc-form textarea.clc-invalid {
	border-color: #d70000;
}

.clc-form select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 7 9 10 12 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
}

.clc-field-error {
	display: block;
	color: #d70000;
	font-size: 13px;
	margin-top: 6px;
	min-height: 0;
}

.clc-field-error:not(:empty) {
	min-height: 18px;
}

.clc-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 15px;
	gap: 20px;
}

.clc-policy {
	color: #666;
	line-height: 1.8;
	font-size: 15px;
}

.clc-policy a {
	color: #666;
	text-decoration: underline;
}

.clc-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 250px;
	height: 58px;
	background: #d70000;
	color: #fff;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: 0.3s;
}

.clc-submit-btn:hover:not(:disabled) {
	background: #b40000;
}

.clc-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.clc-submit-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.clc-form-message {
	margin-top: 20px;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 15px;
	display: none;
}

.clc-form-message.clc-success {
	display: block;
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}

.clc-form-message.clc-error {
	display: block;
	background: #ffebee;
	color: #c62828;
	border: 1px solid #ef9a9a;
}

@media (max-width: 768px) {
	.clc-container {
		padding: 25px;
	}

	.clc-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.clc-submit-btn {
		width: 100%;
	}
}
