/* Eres Form — frontend stilleri (Faz 3). Özgün, tema-nötr.
 * Tüm seçiciler .eres-form öneki ile kapsanır (tema çakışma koruması). */

.eres-form {
	margin: 0 0 1.5em;
	max-width: 640px;
}

.eres-form__title {
	margin: 0 0 0.6em;
	font-size: 1.3em;
}

/* Yanıt / mesaj alanı */
.eres-form__response:empty {
	display: none;
}
.eres-form__success,
.eres-form__alert {
	padding: 12px 14px;
	border-radius: 6px;
	margin-bottom: 1em;
	font-size: 0.95em;
}
.eres-form__success {
	background: #e6f4ea;
	border: 1px solid #008a20;
	color: #0a6b22;
}
.eres-form__alert {
	background: #fcebea;
	border: 1px solid #d63638;
	color: #a3211f;
}

/* Alanlar */
.eres-form__field {
	margin-bottom: 1.1em;
}
.eres-form__label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35em;
}
.eres-form__required {
	color: #d63638;
}
.eres-form__input,
.eres-form select.eres-form__input,
.eres-form textarea.eres-form__input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	line-height: 1.4;
}
/* Görsel skin — "Tema stilini devral" (wrapper data-css="inherit") modunda
   UYGULANMAZ → aktif temanın input/select/textarea stili devreye girer.
   Düzen (genişlik/blok) her modda korunur. */
.eres-form:not([data-css="inherit"]) .eres-form__input,
.eres-form:not([data-css="inherit"]) select.eres-form__input,
.eres-form:not([data-css="inherit"]) textarea.eres-form__input {
	padding: 0.6em 0.7em;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	font-size: 1em;
	background: #fff;
	color: inherit;
}
.eres-form textarea.eres-form__input {
	min-height: 110px;
	resize: vertical;
}
.eres-form:not([data-css="inherit"]) .eres-form__input:focus {
	outline: 2px solid #2271b1;
	outline-offset: 1px;
	border-color: #2271b1;
}

/* Seçimler */
.eres-form__choices {
	display: flex;
	flex-direction: column;
	gap: 0.3em;
}
.eres-form__choice,
.eres-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	font-weight: 400;
	cursor: pointer;
}
.eres-form__consent input,
.eres-form__choice input {
	margin-top: 0.2em;
}

/* Yardım + hata */
.eres-form__help {
	margin: 0.3em 0 0;
	font-size: 0.85em;
	color: #646970;
}
.eres-form__error {
	margin: 0.3em 0 0;
	font-size: 0.85em;
	color: #d63638;
	min-height: 0;
}
.eres-form__error:empty {
	display: none;
}
.eres-form__field.has-error .eres-form__input {
	border-color: #d63638;
}

/* Bölüm / sayfa sonu / html */
.eres-form__section {
	margin: 1.4em 0 0.8em;
	border-top: 1px solid #e0e0e0;
	padding-top: 0.8em;
}
.eres-form__section h3 {
	margin: 0 0 0.2em;
}
.eres-form__section-help {
	margin: 0;
	color: #646970;
	font-size: 0.9em;
}
.eres-form__page-break {
	border: none;
	border-top: 2px dashed #dcdcde;
	margin: 1.4em 0;
}

/* Honeypot — ekran dışı, erişilebilir gizleme */
.eres-form__hp {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Gönder */
.eres-form__captcha {
	margin: 0.8em 0;
}
.eres-form__captcha-note {
	margin: 0;
	font-size: 0.9em;
	color: #b32d2e;
}
.eres-form__actions {
	display: flex;
	align-items: center;
	gap: 0.6em;
	margin-top: 0.6em;
}
.eres-form__submit {
	cursor: pointer;
}
/* Buton görseli inherit modunda temaya bırakılır. */
.eres-form:not([data-css="inherit"]) .eres-form__submit {
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.7em 1.4em;
	font-size: 1em;
}
.eres-form:not([data-css="inherit"]) .eres-form__submit:hover {
	background: #135e96;
}
.eres-form__submit:disabled {
	opacity: 0.6;
	cursor: default;
}
.eres-form__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid #c3c4c7;
	border-top-color: #2271b1;
	border-radius: 50%;
	animation: erf-spin 0.7s linear infinite;
}
.eres-form.is-submitting .eres-form__spinner {
	display: inline-block;
}
@keyframes erf-spin {
	to { transform: rotate( 360deg ); }
}

/* Çok adımlı */
.eres-form__progress {
	position: relative;
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	margin-bottom: 1.2em;
}
.eres-form__progress-bar {
	height: 100%;
	background: #2271b1;
	border-radius: 4px;
	transition: width .25s ease;
}
.eres-form__progress-text {
	position: absolute;
	right: 0;
	top: 12px;
	font-size: 0.8em;
	color: #646970;
}
.eres-form__nav {
	display: flex;
	gap: 0.6em;
	align-items: center;
	margin-top: 1em;
}
.eres-form__prev,
.eres-form__next {
	background: #f0f0f1;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	padding: 0.6em 1.2em;
	cursor: pointer;
	font-size: 1em;
}
.eres-form__next {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

/* Ad/Soyad */
.eres-form__name {
	display: flex;
	gap: 0.6em;
}
.eres-form__name-part {
	flex: 1;
}

/* Puanlama (yıldız) */
.eres-form__rating {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 2px;
	font-size: 1.6em;
	line-height: 1;
}
.eres-form__star input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}
.eres-form__star span[aria-hidden] {
	color: #c3c4c7;
	cursor: pointer;
}
.eres-form__star input:checked ~ span[aria-hidden],
.eres-form__rating:hover .eres-form__star span[aria-hidden] {
	color: #dba617;
}
.eres-form__star:hover ~ .eres-form__star span[aria-hidden] {
	color: #dba617;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 1px, 1px, 1px, 1px );
}

/* Aralık (slider) */
.eres-form__range {
	display: flex;
	align-items: center;
	gap: 0.8em;
}
.eres-form__range input[type="range"] {
	flex: 1;
}
.eres-form__range-out {
	min-width: 2.5em;
	text-align: center;
	font-weight: 600;
}

/* Kapalı form bildirimi */
.eres-form--closed .eres-form__notice {
	padding: 14px 16px;
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	color: #50575e;
}

@media (max-width: 600px) {
	.eres-form {
		max-width: 100%;
	}
	.eres-form__name {
		flex-direction: column;
	}
}

/* =========================================================================
 * Faz 6 — Stil sistemi (CSS değişkenleri + varyantlar). Wrapper'a uygulanan
 * --erf-* değişkenleri ve data-* öznitelikleri bu kuralları sürer.
 * ====================================================================== */

/* Renk/yarıçap değişkenleri (varsayılanlar). */
.eres-form:not([data-css="inherit"]) .eres-form__input:focus {
	outline-color: var( --erf-primary, #2271b1 );
	border-color: var( --erf-primary, #2271b1 );
}
.eres-form:not([data-css="inherit"]) .eres-form__input,
.eres-form:not([data-css="inherit"]) .eres-form__submit {
	border-radius: var( --erf-radius, 6px );
}
.eres-form:not([data-css="inherit"]) .eres-form__submit {
	background: var( --erf-primary, #2271b1 );
}
.eres-form:not([data-css="inherit"]) .eres-form__submit:hover {
	filter: brightness( 0.92 );
}
.eres-form .eres-form__error {
	color: var( --erf-error, #d63638 );
}
.eres-form .eres-form__field.has-error .eres-form__input {
	border-color: var( --erf-error, #d63638 );
}
.eres-form .eres-form__success {
	border-color: var( --erf-success, #008a20 );
	color: var( --erf-success, #0a6b22 );
}

/* Etiket konumu */
.eres-form[data-labels="left"] .eres-form__field {
	display: grid;
	grid-template-columns: 32% 1fr;
	gap: 0.8em;
	align-items: start;
}
.eres-form[data-labels="left"] .eres-form__label {
	margin-top: 0.5em;
}
.eres-form[data-labels="hidden"] .eres-form__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 1px, 1px, 1px, 1px );
}

/* Girdi boyutu (inherit modunda uygulanmaz). */
.eres-form:not([data-css="inherit"])[data-size="sm"] .eres-form__input { padding: 0.4em 0.55em; font-size: 0.9em; }
.eres-form:not([data-css="inherit"])[data-size="lg"] .eres-form__input { padding: 0.8em 0.9em; font-size: 1.1em; }

/* Boşluk yoğunluğu */
.eres-form[data-spacing="compact"] .eres-form__field { margin-bottom: 0.6em; }
.eres-form[data-spacing="relaxed"] .eres-form__field { margin-bottom: 1.8em; }

/* Buton stili (inherit modunda uygulanmaz). */
.eres-form:not([data-css="inherit"])[data-button="outline"] .eres-form__submit {
	background: transparent;
	color: var( --erf-primary, #2271b1 );
	border: 2px solid var( --erf-primary, #2271b1 );
}
.eres-form:not([data-css="inherit"])[data-button="pill"] .eres-form__submit {
	border-radius: 999px;
	padding-left: 1.8em;
	padding-right: 1.8em;
}

/* Görünüm varyantları */
.eres-form[data-style="boxed"] .eres-form__form {
	border: 1px solid #dcdcde;
	border-radius: calc( var( --erf-radius, 6px ) + 2px );
	padding: 1.4em;
	background: #fff;
}
.eres-form[data-style="modern"] .eres-form__form {
	border: 1px solid #e8eaed;
	border-radius: calc( var( --erf-radius, 6px ) + 6px );
	padding: 1.6em;
	background: #fff;
	box-shadow: 0 6px 24px rgba( 0, 0, 0, 0.06 );
}
.eres-form:not([data-css="inherit"])[data-style="minimal"] .eres-form__input {
	border: none;
	border-bottom: 2px solid #c3c4c7;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	background: transparent;
}
.eres-form[data-style="full-width"] {
	max-width: 100%;
}
.eres-form[data-style="inline"] .eres-form__form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0.6em;
}
.eres-form[data-style="inline"] .eres-form__field {
	flex: 1 1 180px;
	margin-bottom: 0;
}

/* Conversational (tek-soru-ekran) */
.eres-form--conversational .eres-form__field {
	font-size: 1.1em;
}
.eres-form--conversational .eres-form__cv-screen {
	min-height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.eres-form--conversational .eres-form__nav {
	margin-top: 1.4em;
}
.eres-form__cv-progress {
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	margin-bottom: 1.4em;
}
.eres-form__cv-progress-bar {
	height: 100%;
	background: var( --erf-primary, #2271b1 );
	border-radius: 3px;
	transition: width .25s ease;
}
.eres-form__cv-hint {
	font-size: 0.8em;
	color: #646970;
	margin-top: 0.6em;
}

/* Kaydet & sonra devam et (Faz 9) */
.eres-form__resume {
	margin-top: 0.8em;
	padding-top: 0.8em;
	border-top: 1px dashed #dcdcde;
}
.eres-form__resume-save {
	background: none;
	border: 1px solid currentColor;
	color: inherit;
	padding: 0.4em 0.9em;
	border-radius: var(--erf-radius, 6px);
	cursor: pointer;
	font: inherit;
	opacity: 0.85;
}
.eres-form__resume-save:hover { opacity: 1; }
.eres-form__resume-result { margin-top: 0.6em; }
.eres-form__resume-msg { margin: 0 0 0.4em; font-size: 0.9em; }
.eres-form__resume-link {
	width: 100%;
	padding: 0.45em 0.6em;
	font-size: 0.85em;
	border: 1px solid #c3c4c7;
	border-radius: var(--erf-radius, 6px);
	background: #f6f7f7;
}

/* Adres (komposit) */
.eres-form__address {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6em;
}
.eres-form__addr-part { min-width: 0; }
.eres-form__addr-part--full { grid-column: 1 / -1; }
.eres-form__addr-part input { width: 100%; box-sizing: border-box; }
@media (max-width: 480px) {
	.eres-form__address { grid-template-columns: 1fr; }
}

/* İmza alanı (EF12) */
.eres-form__signature { display: block; }
.eres-form__sig-pad {
	display: block;
	width: 100%;
	height: 180px;
	background: #fff;
	border: 1px dashed #9aa3af;
	border-radius: 6px;
	touch-action: none;
	cursor: crosshair;
}
.eres-form__sig-pad:hover { border-color: var( --erf-primary, #2271b1 ); }
.eres-form__sig-actions { margin-top: 6px; }
.eres-form__sig-clear {
	font-size: 0.85em;
	padding: 4px 12px;
	background: #f0f1f3;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	cursor: pointer;
	color: #50575e;
}
.eres-form__sig-clear:hover { background: #e5e7eb; }

/* NPS (0–10 tavsiye skoru) */
.eres-form__nps-scale {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.eres-form__nps-btn {
	flex: 1 1 auto;
	min-width: 2.2em;
	text-align: center;
	cursor: pointer;
}
.eres-form__nps-btn input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.eres-form__nps-btn span {
	display: block;
	padding: 0.5em 0;
	border: 1px solid #c3c4c7;
	border-radius: var(--erf-radius, 6px);
	background: #fff;
	font-weight: 600;
	transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.eres-form__nps-btn:hover span { border-color: var(--erf-primary, #3867e8); }
.eres-form__nps-btn input:checked + span {
	background: var(--erf-primary, #3867e8);
	border-color: var(--erf-primary, #3867e8);
	color: #fff;
}
.eres-form__nps-btn input:focus-visible + span { outline: 2px solid var(--erf-primary, #3867e8); outline-offset: 2px; }
.eres-form__nps-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
	font-size: 0.82em;
	color: #646970;
}

/* Renk seçici */
.eres-form__input[type="color"] {
	width: 64px;
	height: 38px;
	padding: 2px;
	cursor: pointer;
}

/* Repeater (EF12-B) — alan-içi-alan satırları */
.eres-form__field--repeater .erf-repeater { margin-top: 4px; }
.eres-form__repeater, .erf-repeater__rows { display: flex; flex-direction: column; gap: 12px; }
.erf-repeater__row {
	position: relative;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	padding: 16px 40px 12px 16px;
	margin: 0;
}
.erf-repeater__legend {
	font-weight: 600;
	font-size: 0.95em;
	padding: 0 6px;
	color: #1d2327;
}
.erf-repeater__row-fields { display: flex; flex-direction: column; gap: 12px; }
.erf-repeater--compact .erf-repeater__row-fields { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 12px; }
.erf-repeater--compact .erf-repeater__row-fields > .eres-form__field { flex: 1 1 160px; min-width: 0; }
.erf-repeater__remove {
	position: absolute; top: 10px; right: 10px;
	width: 26px; height: 26px; line-height: 1;
	border: 1px solid #dcdcde; background: #fff; color: #b32d2e;
	border-radius: 6px; cursor: pointer; font-size: 18px;
	display: inline-flex; align-items: center; justify-content: center;
}
.erf-repeater__remove:hover { background: #fcebea; border-color: #f0b8b7; }
.erf-repeater__add-wrap { margin-top: 12px; }
.erf-repeater__add {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 14px; font-size: 0.92em; font-weight: 600;
	background: #f0f1f3; color: #1d2327;
	border: 1px solid #c3c4c7; border-radius: 6px; cursor: pointer;
}
.erf-repeater__add:hover { background: #e5e7eb; }
.erf-repeater__add:disabled, .erf-repeater__add.is-disabled { opacity: .5; cursor: not-allowed; }

/* Zincirleme liste (EF12-C) — bağımlı açılır listeler */
.eres-form__chained { display: flex; flex-wrap: wrap; gap: 10px; }
.eres-form__chained-level { display: flex; flex-direction: column; gap: 4px; flex: 1 1 160px; min-width: 0; }
.eres-form__chained-label { font-size: 0.85em; font-weight: 600; opacity: .85; }
.eres-form__chained select[disabled] { opacity: .55; cursor: not-allowed; }

/* Sütun yerleşimi (EF-LAYOUT-1) — alan genişliği 1/1, 1/2, 1/3, 1/4 */
.eres-form__fields { display: flex; flex-wrap: wrap; column-gap: var(--erf-col-gap, 1em); align-items: flex-start; }
.eres-form__fields > * { flex: 0 0 100%; min-width: 0; }
.eres-form__fields > .eres-form__field--w-half    { flex-basis: calc(50% - var(--erf-col-gap, 1em) / 2); }
.eres-form__fields > .eres-form__field--w-third   { flex-basis: calc((100% - 2 * var(--erf-col-gap, 1em)) / 3); }
.eres-form__fields > .eres-form__field--w-quarter { flex-basis: calc((100% - 3 * var(--erf-col-gap, 1em)) / 4); }
/* Konuşma modu: tek soru/ekran → sütun devre dışı */
.eres-form--conversational .eres-form__fields { display: block; }
/* Mobil: sütunlar tek sütuna iner */
@media (max-width: 600px) {
	.eres-form__fields > .eres-form__field { flex-basis: 100%; }
}

/* Web Push abone-ol bloğu (EF13-C2) */
.eres-form__push { margin-top: 14px; }
.eres-form__push-btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 16px; cursor: pointer;
	font-size: 0.95em; line-height: 1.2;
	color: var( --erf-primary, #2271b1 );
	background: transparent;
	border: 1px solid var( --erf-primary, #2271b1 );
	border-radius: var( --erf-radius, 6px );
}
.eres-form__push-btn:hover { background: var( --erf-primary, #2271b1 ); color: #fff; }
.eres-form__push-btn:disabled { opacity: .55; cursor: not-allowed; }
.eres-form__push[data-push-state="subscribed"] .eres-form__push-btn {
	background: var( --erf-primary, #2271b1 ); color: #fff;
}
.eres-form__push-status { margin: 6px 0 0; font-size: 0.85em; opacity: .85; }
.eres-form__push-status.is-error { color: var( --erf-error, #d63638 ); opacity: 1; }

/* ───────────────────────────────────────────────────────────────
   "Tema stilini devral" (wrapper data-css="inherit"): eklenti GÖRSEL skin
   kuralları yukarıda `:not([data-css="inherit"])` ile zaten dışlanır →
   girdi/select/textarea/submit görünümü AKTİF TEMAYA bırakılır (tema kendi
   input/button element kurallarını uygular). Düzen/işlevsel kurallar (genişlik,
   hata/başarı rengi, ilerleme, honeypot, çok adım) her modda korunur.
   NOT: `revert` KULLANILMAZ — revert tüm author-origin'i (temayı da) geri
   alıp tarayıcı varsayılanına düşürürdü; doğru yöntem skin'i HİÇ uygulamamak. */

/* Gönder butonu: sütun genişliği (düzen — her modda) + ikon hizası. */
.eres-form__actions--w-half .eres-form__submit { width: 50%; }
.eres-form__actions--w-third .eres-form__submit { width: 33.3333%; }
.eres-form__actions--w-quarter .eres-form__submit { width: 25%; }
@media ( max-width: 600px ) {
	.eres-form__actions[class*="--w-"] .eres-form__submit { width: 100%; }
}
.eres-form__submit--has-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
}
.eres-form__submit-icon { flex-shrink: 0; }

/* Telefon: uluslararası ülke seçici + numara. Birleşik TEK kutu (FFP tarzı):
   solda bayrak+kod tetikleyici, dikey ayraç, sağda numara. Çerçeve wrapper'da
   → çocuklar borderless. Kutu nötr kenarlık + form yarıçapını miras alır; her
   stil/inherit modunda tutarlı (kullanıcı bu birleşik görünümü istedi). */
.eres-form__phone--intl {
	display: flex;
	align-items: stretch;
	border: 1px solid rgba( 0, 0, 0, 0.22 );
	border-radius: var( --erf-radius, 6px );
	background: #fff;
	overflow: hidden;
}
.eres-form__phone--intl .eres-form__phone-cc {
	flex: 0 0 auto;
	border: 0;
	border-right: 1px solid rgba( 0, 0, 0, 0.12 );
	background: transparent;
	padding: 0.6em 0.45em 0.6em 0.6em;
	font-size: 1em;
	line-height: 1.4;
	color: inherit;
	cursor: pointer;
	max-width: 9em;
}
.eres-form__phone--intl .eres-form__phone-num {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 0.6em 0.7em;
	font-size: 1em;
	line-height: 1.4;
	color: inherit;
}
.eres-form__phone--intl:focus-within {
	outline: 2px solid var( --erf-primary, #2271b1 );
	outline-offset: 1px;
}
.eres-form__phone--intl .eres-form__phone-cc:focus,
.eres-form__phone--intl .eres-form__phone-num:focus {
	outline: none;
}

/* KVKK/onay + Gönder butonu YAN YANA (inline_consent_submit). */
.eres-form__inline-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2em;
	flex-wrap: wrap;
}
.eres-form__inline-actions > .eres-form__field { margin-bottom: 0; flex: 1 1 14em; }
.eres-form__inline-actions > .eres-form__actions { margin: 0; flex: 0 0 auto; }
/* Inline modda Gönder butonunun sütun-genişliği YÜZDESİ uygulanmaz (aksi halde
   içeriğe küçülen actions kabının %'si → buton sıkışır). Buton doğal/rahat
   genişlikte (içerik + dolgu); gerekli minimum genişlik garanti. */
.eres-form__inline-actions > .eres-form__actions[class*="--w-"] .eres-form__submit { width: auto; }
.eres-form__inline-actions .eres-form__submit { min-width: 12em; justify-content: center; }

/* Zengin metin (richtext) alanı — toolbar + contenteditable. */
.eres-form__richtext { border: 1px solid #c3c4c7; border-radius: 6px; overflow: hidden; }
.eres-form__richtext .eres-form__input { border: none; border-radius: 0; }
.eres-form__rt-toolbar { display: flex; flex-wrap: wrap; gap: 2px; padding: 4px; border-bottom: 1px solid #e5e7eb; background: #f6f7f7; }
.eres-form__rt-toolbar button { min-width: 28px; padding: 2px 7px; cursor: pointer; border: 1px solid transparent; background: transparent; border-radius: 4px; font-size: 13px; line-height: 1.4; }
.eres-form__rt-toolbar button:hover { background: #fff; border-color: #dcdcde; }
.eres-form__rt-area { min-height: 120px; padding: 0.6em 0.7em; outline: none; }
.eres-form__rt-area:focus { box-shadow: inset 0 0 0 2px var( --erf-primary, #2271b1 ); }

/* EF17 landing modu: ortalanmış, dikkat-odaklı kap. */
.eres-form-landing {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 16px;
	box-sizing: border-box;
}
.eres-form-landing__inner { width: 100%; max-width: 640px; }
