/* Lightek Verify – telefono patvirtinimo elementai registracijos formoje */

.ltkv-phone-wrap {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.ltkv-phone-wrap input[type="text"] {
	flex: 1 1 auto;
	min-width: 0;
}

.ltkv-btn {
	flex: 0 0 auto;
	background: #f2ce3f;
	color: #1a1a1a;
	border: none;
	border-radius: 6px;
	padding: 0 18px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, opacity 0.15s ease;
}

.ltkv-btn:hover:not(:disabled) {
	background: #e0be30;
}

.ltkv-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.ltkv-btn.ltkv-done {
	background: #31c48d;
	color: #fff;
	opacity: 1;
}

.ltkv-btn.ltkv-done::before {
	content: "✓ ";
}

input.ltkv-verified {
	border-color: #31c48d !important;
	background-color: #f2fbf7 !important;
}

input.ltkv-readonly {
	background-color: #f1f1f1;
	color: #666;
}

.ltkv-notice {
	margin-top: 10px;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.45;
}

.ltkv-notice-error {
	background: #fde8e8;
	color: #9b1c1c;
	border-left: 4px solid #f05252;
}

.ltkv-notice-success {
	background: #def7ec;
	color: #03543f;
	border-left: 4px solid #31c48d;
}

.ltkv-code-box {
	margin-top: 12px;
	padding: 16px;
	background: #fafafa;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
}

.ltkv-code-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #444;
}

.ltkv-code-row {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.ltkv-code-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid #dcdcdc;
	border-radius: 6px;
	font-size: 18px;
	letter-spacing: 4px;
	text-align: center;
	background: #fff;
}

.ltkv-code-input:focus {
	border-color: #f2ce3f;
	outline: none;
}

.ltkv-hint {
	margin: 8px 0 0;
	font-size: 12px;
	color: #6b6b6b;
	line-height: 1.4;
}

.ltkv-link {
	margin-top: 10px;
	padding: 0;
	background: none;
	border: none;
	color: #2b6cb0;
	font-size: 13px;
	cursor: pointer;
	text-decoration: underline;
}

.ltkv-link:disabled {
	color: #999;
	cursor: not-allowed;
	text-decoration: none;
}

@media (max-width: 480px) {
	.ltkv-phone-wrap {
		flex-direction: column;
	}

	.ltkv-btn {
		padding: 12px 18px;
	}
}
