.rz-email-gate {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(2px);
}

.rz-email-gate--open {
	display: flex;
}

.rz-email-gate__card {
	width: 100%;
	max-width: 420px;
	box-sizing: border-box;
	padding: 28px 26px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	color: #0f172a;
	animation: rz-email-gate-in 0.18s ease-out;
}

@keyframes rz-email-gate-in {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.rz-email-gate__title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
}

.rz-email-gate__desc {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.5;
	color: #475569;
}

.rz-email-gate__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rz-email-gate__input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 15px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.rz-email-gate__input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.rz-email-gate__input--invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.rz-email-gate__error {
	min-height: 18px;
	font-size: 13px;
	color: #dc2626;
}

.rz-email-gate__submit {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: #2563eb;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.rz-email-gate__submit:hover {
	background: #1d4ed8;
}

.rz-email-gate__submit:disabled {
	opacity: 0.6;
	cursor: default;
}
