.lk-form-wrap {
	max-width: 520px;
	margin: 0 auto;
}

.lk-form-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: inherit;
}

.lk-field-group {
	margin-bottom: 18px;
}

.lk-label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 6px;
	color: inherit;
}

.lk-required {
	color: #e53e3e;
	margin-left: 2px;
}

.lk-input,
.lk-textarea,
.lk-select {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #d1d5db;
	border-radius: 6px;
	font-size: 0.95rem;
	color: inherit;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: inherit;
}

.lk-input:focus,
.lk-textarea:focus,
.lk-select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.lk-textarea {
	resize: vertical;
	min-height: 80px;
}

.lk-radio-group,
.lk-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lk-radio-label,
.lk-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	cursor: pointer;
}

.lk-submit-btn {
	width: 100%;
	padding: 12px 24px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	font-family: inherit;
}

.lk-submit-btn:hover { background: #1d4ed8; }
.lk-submit-btn:disabled { background: #93c5fd; cursor: not-allowed; }

.lk-msg {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 0.9rem;
}

.lk-msg--success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.lk-msg--error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}
