/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.icm-form {
	margin: 32px 0 48px;
	color: #24313f;
}

.icm-form *,
.icm-form *::before,
.icm-form *::after {
	box-sizing: border-box;
}

.icm-form .contain {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.icm-form .grid-12 {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.icm-form .col-12,
.icm-form .col--12-12 {
	grid-column: span 12;
}

.icm-form .col-6,
.icm-form .col--6-12 {
	grid-column: span 6;
}

.icm-form .col--4-12 {
	grid-column: span 4;
}

.icm-form h4 {
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1.25;
	color: #111827;
}

.icm-form hr {
	grid-column: 1 / -1;
	width: 100%;
	margin: 28px 0;
	border: 0;
	border-top: 1px solid #d7dde4;
}

.icm-form .field-element {
	margin-bottom: 18px;
}

.icm-form .field-element--2-line {
	margin-bottom: 22px;
}

.icm-form__field__label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #26313f;
}

.icm-form__field__element,
.icm-form #security_code {
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #b8c2cc;
	border-radius: 4px;
	background: #fff;
	color: #111827;
	font: inherit;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.icm-form__field__element:focus,
.icm-form #security_code:focus {
	outline: none;
	border-color: #2563a9;
	box-shadow: 0 0 0 3px rgba(37, 99, 169, 0.18);
}

.icm-form__field__element--select {
	appearance: none;
	padding-right: 40px;
}

.icm-form .selectBox {
	position: relative;
}

.icm-form .selectBox::after {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 9px;
	height: 9px;
	border-right: 2px solid #52616f;
	border-bottom: 2px solid #52616f;
	content: "";
	pointer-events: none;
	transform: translateY(-65%) rotate(45deg);
}

.icm-form__field__label--checkbox {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.icm-form__field__label--checkbox input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	flex: 0 0 auto;
	accent-color: #2563a9;
}

.icm-form .error-message {
	display: none;
	margin-top: 6px;
	color: #b42318;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.icm-form .error-message label {
	margin: 0;
	color: inherit;
	font: inherit;
}

.icm-form .errorContainer .icm-form__field__element,
.icm-form .icm-form__field__element.error,
.icm-form #security_code.error {
	border-color: #b42318;
}

.icm-form .errorContainer .error-message {
	display: block;
}

.icm-form #captcha-wrap {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

.icm-form #refresh-captcha {
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.icm-form #captcha {
	max-width: 220px;
	height: auto;
	border: 1px solid #d7dde4;
	border-radius: 4px;
}

.icm-form .col--submit {
	margin-top: 8px;
}

.icm-form .btn,
.icm-form .largeBtn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 46px;
	width: 100%;
	padding: 11px 20px;
	border: 0;
	border-radius: 4px;
	background: #1f6f5b;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.icm-form .btn:hover,
.icm-form .largeBtn:hover {
	background: #185746;
}

.icm-form .btn:focus-visible,
.icm-form .largeBtn:focus-visible {
	outline: 3px solid rgba(31, 111, 91, 0.28);
	outline-offset: 2px;
}

.icm-form .btn:active,
.icm-form .largeBtn:active {
	transform: translateY(1px);
}

@media (max-width: 767px) {
	.icm-form {
		margin: 24px 0 36px;
	}

	.icm-form .grid-12 {
		gap: 0;
	}

	.icm-form .col-6,
	.icm-form .col--4-12,
	.icm-form .col--6-12 {
		grid-column: span 12;
	}

	.icm-form h4 {
		font-size: 20px;
	}

	.icm-form #captcha-wrap {
		align-items: flex-start;
		flex-direction: column;
	}
}

.sms-page {
	padding: 48px 0;
	color: #24313f;
}

.sms-page *,
.sms-page *::before,
.sms-page *::after {
	box-sizing: border-box;
}

.sms-page__layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
	min-height: 620px;
	border: 1px solid #d7dde4;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.sms-page__image-col {
	min-height: 620px;
	background-color: #f0f4f7;
	background-image: linear-gradient(135deg, #e9eef2, #f8fafc);
	background-position: center;
	background-size: cover;
}

.sms-page__form-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 48px;
}

.sms-page__heading {
	margin: 0 0 16px;
	color: #111827;
	font-size: 34px;
	line-height: 1.15;
}

.sms-page__heading--thankyou {
	text-align: center;
}

.sms-page__content {
	margin-bottom: 18px;
}

.sms-page__content > :last-child {
	margin-bottom: 0;
}

.sms-page__heading-border {
	width: 72px;
	height: 4px;
	margin: 0 0 26px;
	border-radius: 999px;
	background: #1f6f5b;
}

.sms-page__err {
	margin: 0 0 20px;
	color: #b42318;
	font-size: 17px;
	line-height: 1.35;
}

.sms-field {
	margin-bottom: 18px;
}

.sms-field__label {
	display: block;
	margin-bottom: 7px;
	color: #26313f;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.sms-field__element {
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #b8c2cc;
	border-radius: 4px;
	background: #fff;
	color: #111827;
	font: inherit;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sms-field__element:focus {
	outline: none;
	border-color: #2563a9;
	box-shadow: 0 0 0 3px rgba(37, 99, 169, 0.18);
}

.sms-field__label--optin {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 500;
	line-height: 1.45;
}

.sms-field__checkbox {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex: 0 0 auto;
	accent-color: #2563a9;
}

.sms-field .error-message {
	display: none;
	margin-top: 6px;
	color: #b42318;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.sms-field .error-message label {
	margin: 0;
	color: inherit;
	font: inherit;
}

.sms-field.error .error-message {
	display: block;
}

.sms-field.error .sms-field__element,
.sms-field__element.error {
	border-color: #b42318;
}

.sms-field__btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 46px;
	width: 100%;
	padding: 11px 20px;
	border: 0;
	border-radius: 4px;
	background: #1f6f5b;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.sms-field__btn:hover {
	background: #185746;
}

.sms-field__btn:focus-visible {
	outline: 3px solid rgba(31, 111, 91, 0.28);
	outline-offset: 2px;
}

.sms-field__btn:active {
	transform: translateY(1px);
}

@media (max-width: 900px) {
	.sms-page {
		padding: 28px 0;
	}

	.sms-page__layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.sms-page__image-col {
		min-height: 260px;
	}

	.sms-page__form-col {
		padding: 32px 22px;
	}

	.sms-page__heading {
		font-size: 28px;
	}
}
