/* ── MultiAuth Login — Modal ───────────────────────────────── */

.mal-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.mal-modal--open {
	display: flex;
}

.mal-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.mal-modal__container {
	position: relative;
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 420px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: malFadeIn 0.2s ease-out;
}

@keyframes malFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mal-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	padding: 4px 8px;
	border-radius: 4px;
}

.mal-modal__close:hover {
	background: #f0f0f0;
	color: #333;
}

body.mal-modal-active {
	overflow: hidden;
}

@media (max-width: 480px) {
	.mal-modal__container {
		padding: 20px 16px;
		margin: 0 12px;
	}
}
