.lmf-form {
	width: 100%;
}

.lmf-field {
	margin-bottom: .75rem;
}

.lmf-field input[type="text"],
.lmf-field input[type="email"] {
	width: 100%;
	padding: .75rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color .2s;
	box-sizing: border-box;
}

.lmf-field input:focus {
	outline: none;
	border-color: #2563eb;
}

.lmf-btn {
	width: 100%;
	padding: .85rem;
	background: #e74c3c;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}

.lmf-btn:hover    { background: #c0392b; }
.lmf-btn:disabled { opacity: .6; cursor: not-allowed; }

.lmf-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.lmf-message          { margin-top: .5rem; font-size: .9rem; }
.lmf-message.error    { color: #e74c3c; }
.lmf-message.success  { color: #27ae60; }

.lmf-gdpr-note   { font-size: .8rem; color: #6b7280; margin-top: .75rem; }
.lmf-gdpr-note a { color: #2563eb; text-decoration: underline; }

/* Modal */
.lmf-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

.lmf-modal[hidden] { display: none; }

.lmf-modal-content {
	background: #fff;
	max-width: 640px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	border-radius: 12px;
	padding: 2rem;
	position: relative;
	box-sizing: border-box;
}

.lmf-modal-close {
	position: absolute;
	top: .75rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #6b7280;
}

.lmf-modal-body {
	font-size: .9rem;
	text-align: left;
	line-height: 1.7;
}
