.blcp-form-wrap {
	width: 100%;
}

.blcp-form {
	width: 100%;
}

.blcp-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr) auto;
	gap: 18px;
	align-items: start;
}

.blcp-field {
	width: 100%;
	min-width: 0;
}

.blcp-input,
.blcp-phone-box,
.blcp-button {
	min-height: 56px;
}

.blcp-input {
	width: 100%;
	height: 56px;
	padding: 0 18px;
	border: 1px solid rgba(255,255,255,0.45);
	border-radius: 10px;
	background: #ffffff !important;
	color: #1f2937 !important;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	box-sizing: border-box;
	outline: none;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
	-webkit-text-fill-color: #1f2937 !important;
}

.blcp-input::placeholder {
	color: #8b95a7 !important;
	opacity: 1;
	-webkit-text-fill-color: #8b95a7 !important;
}

.blcp-input:focus {
	border-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
	transform: translateY(-1px);
}

.blcp-phone-box {
	display: flex;
	align-items: center;
	width: 100%;
	height: 56px;
	background: #ffffff;
	border: 1px solid rgba(255,255,255,0.45);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.blcp-phone-box:focus-within {
	border-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
	transform: translateY(-1px);
}

.blcp-phone-prefix {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 100%;
	padding: 0 16px;
	border-right: 1px solid #e8edf3;
	background: #ffffff;
	color: #1f2937;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	flex: 0 0 auto;
}

.blcp-flag {
	font-size: 16px;
	line-height: 1;
}

.blcp-code {
	line-height: 1;
}

.blcp-phone-input {
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: #ffffff !important;
	padding-left: 16px;
	padding-right: 18px;
	height: 56px;
}

.blcp-phone-input:focus {
	transform: none;
}

.blcp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 28px;
	border: 0;
	border-radius: 10px;
	background: #ffffff;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(0,0,0,0.10);
	transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.blcp-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.14);
	opacity: 0.98;
}

.blcp-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.blcp-message {
	display: none;
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
}

.blcp-message.is-success {
	display: block;
	background: #41a643;
	color: #ffffff;
}

.blcp-message.is-error {
	display: block;
	background: #d74f4f;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.blcp-grid {
		grid-template-columns: 1fr 1fr;
	}

	.blcp-field-submit {
		grid-column: 1 / -1;
	}

	.blcp-button {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.blcp-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.blcp-field-submit {
		grid-column: auto;
	}

	.blcp-button,
	.blcp-input,
	.blcp-phone-box {
		width: 100%;
		min-height: 52px;
	}

	.blcp-input,
	.blcp-phone-input {
		height: 52px;
		font-size: 16px;
	}

	.blcp-phone-box {
		height: 52px;
	}

	.blcp-phone-prefix {
		padding: 0 14px;
		font-size: 14px;
	}

	.blcp-button {
		height: 52px;
		font-size: 13px;
		padding: 0 20px;
	}
}