/* Оверлей — блокирует всю страницу */
#ru-email-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* Модальное окно */
#ru-email-modal {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
	padding: 36px 40px 32px;
	max-width: 520px;
	width: calc(100% - 32px);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1a1a1a;
}

#ru-email-modal h2 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

#ru-email-modal p {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #444;
}

/* Сообщения об ошибке / успехе */
#ru-email-msg {
	display: none;
	margin-bottom: 14px;
	padding: 10px 14px;
	border-radius: 5px;
	font-size: 13px;
	line-height: 1.5;
}

#ru-email-msg.ru-error {
	display: block;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
}

#ru-email-msg.ru-success {
	display: block;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #15803d;
}

/* Поле ввода */
.ru-email-field {
	margin-bottom: 16px;
}

.ru-email-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.ru-email-field input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 5px;
	font-size: 15px;
	color: #111;
	outline: none;
	transition: border-color 0.15s;
}

.ru-email-field input[type="email"]:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Кнопка */
#ru-email-submit {
	display: inline-block;
	width: 100%;
	padding: 11px 20px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

#ru-email-submit:hover:not(:disabled) {
	background: #1d4ed8;
}

#ru-email-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Блокируем прокрутку страницы за оверлеем */
body.ru-modal-open {
	overflow: hidden;
	touch-action: none;
}

/* Уведомление об ошибке при регистрации */
.ru-reg-error,
.ru-reg-error li {
	font-size: 15px !important;
	line-height: 1.2 !important;
}
