/* טופס הרשמה (US-038) — RTL, ממותג navy/gold, נטען רק בעמוד עם הטופס. */
.mlg-form-wrap {
	direction: rtl;
	max-width: 460px;
	margin: 0 auto;
	font-family: inherit;
}
.mlg-form-wrap.mlg-align-right { margin-right: 0; margin-left: auto; }
.mlg-form-wrap.mlg-align-left  { margin-left: 0; margin-right: auto; }

.mlg-form {
	background: #fff;
	border: 1px solid #e3ded4;
	border-radius: 10px;
	padding: 22px 20px;
	box-shadow: 0 2px 14px rgba(0, 21, 42, .06);
	text-align: right;
}
.mlg-form-title {
	margin: 0 0 6px;
	color: #00152a;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}
.mlg-form-desc {
	margin: 0 0 16px;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}
.mlg-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.mlg-input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	border: 1px solid #cfc9bd;
	border-radius: 7px;
	font-size: 15px;
	background: #fdfdfb;
	color: #222;
	transition: border-color .15s, box-shadow .15s;
}
.mlg-input:focus {
	outline: none;
	border-color: #735b25;
	box-shadow: 0 0 0 3px rgba(115, 91, 37, .14);
}
.mlg-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 16px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
	cursor: pointer;
}
.mlg-consent input { margin-top: 3px; flex: 0 0 auto; }
.mlg-consent a { color: #735b25; text-decoration: underline; }

.mlg-submit {
	width: 100%;
	background: #735b25;
	color: #fff;
	border: 0;
	border-radius: 7px;
	padding: 13px 20px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s, opacity .15s;
}
.mlg-submit:hover { background: #5f4a1d; }
.mlg-submit:disabled, .mlg-submit.mlg-loading { opacity: .6; cursor: default; }

.mlg-msg { margin-top: 12px; font-size: 14px; line-height: 1.55; min-height: 1px; }
.mlg-msg-ok  { color: #1a7038; font-weight: 600; }
.mlg-msg-err { color: #b3261e; }

/* honeypot — מוסתר לגמרי מבני-אדם ומקוראי-מסך, גלוי לבוטים תמימים. */
.mlg-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.mlg-form-wrap.mlg-done .mlg-form > *:not(.mlg-msg):not(.mlg-form-title) { display: none; }
