/* ==========================================================
   MONSIS LANDING PAGE
========================================================== */

.mysp-monsis-landing{
	max-width:900px;
	margin:40px auto;
	background:#fff;
	border:1px solid #dbe4f0;
	border-radius:18px;
	overflow:hidden;
	box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* ==========================================================
   HERO
========================================================== */

.mysp-monsis-landing-hero{
	padding:60px 40px;
	text-align:center;
	background:linear-gradient(135deg,#3b82f6,#1e40af);
	color:#fff;
}

.mysp-monsis-landing-hero-icon{
	width:90px;
	height:90px;
	margin:0 auto 25px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:42px;
	border-radius:50%;
	background:rgba(255,255,255,.18);
	backdrop-filter:blur(4px);
}

.mysp-monsis-landing-hero h1{
	margin:0 0 18px;
	color:#fff;
	font-size:36px;
	font-weight:700;
	line-height:1.3;
}

.mysp-monsis-landing-hero p{
	max-width:700px;
	margin:0 auto;
	color:rgba(255,255,255,.95);
	font-size:18px;
	line-height:1.8;
}

/* ==========================================================
   CONTENT
========================================================== */

.mysp-monsis-landing-content{
	padding:45px;
}

.mysp-monsis-landing-content h2{
	margin:40px 0 15px;
	color:#1e40af;
	font-size:26px;
	font-weight:700;
	line-height:1.4;
}

.mysp-monsis-landing-content h2:first-child{
	margin-top:0;
}

.mysp-monsis-landing-content p{
	margin:0 0 18px;
	color:#4b5563;
	font-size:16px;
	line-height:1.9;
}

.mysp-monsis-landing-content strong{
	color:#1e40af;
	font-weight:600;
}

/* ==========================================================
   LIST
========================================================== */

.mysp-monsis-landing-content ul{
	margin:20px 0;
	padding:0;
	list-style:none;
}

.mysp-monsis-landing-content li{
	position:relative;
	padding:0 0 0 40px;
	margin-bottom:15px;
	color:#374151;
	line-height:1.8;
}

.mysp-monsis-landing-content li:last-child{
	margin-bottom:0;
}

.mysp-monsis-landing-content li::before{
	content:"✓";
	position:absolute;
	left:0;
	top:3px;
	width:24px;
	height:24px;
	border-radius:50%;
	background:#dbeafe;
	color:#2563eb;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:13px;
	font-weight:700;
}

/* ==========================================================
   LOGIN BOX
========================================================== */

.mysp-monsis-landing-login-box{
	margin-top:45px;
	padding:35px;
	text-align:center;
	border:1px solid #bfdbfe;
	border-radius:14px;
	background:#eff6ff;
}

.mysp-monsis-landing-login-box h2{
	margin:0 0 15px;
	color:#1e40af;
}

.mysp-monsis-landing-login-box p:last-of-type{
	margin-bottom:0;
}

/* ==========================================================
   BUTTON
========================================================== */

.mysp-monsis-landing-login-button{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:14px 34px;
	margin-top:8px;
	border-radius:10px;
	background:#2563eb;
	color:#fff !important;
	text-decoration:none;
	font-size:16px;
	font-weight:600;
	transition:all .25s ease;
}

.mysp-monsis-landing-login-button:hover{
	background:#1d4ed8;
	color:#fff;
	transform:translateY(-2px);
	box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.mysp-monsis-landing-hero-icon .dashicons {
	font-size: 64px;
	width: 64px;
	height: 64px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:768px){

	.mysp-monsis-landing{
		margin:0 -8px;
		border-radius:16px;
		border-left:0;
		border-right:0;
		box-shadow:none;
	}

	.mysp-monsis-landing-hero{
		padding:28px 14px;
	}

	.mysp-monsis-landing-content{
		padding:18px 14px;
	}

	.mysp-monsis-landing-login-box{
		padding:18px 14px;
	}

	.mysp-monsis-landing-hero-icon{
		width:70px;
		height:70px;
		font-size:34px;
		margin-bottom:18px;
	}

	.mysp-monsis-landing-hero h1{
		font-size:26px;
	}

	.mysp-monsis-landing-hero p{
		font-size:15px;
		line-height:1.8;
	}

	.mysp-monsis-landing-content h2{
		font-size:21px;
	}

	.mysp-monsis-landing-login-button{
		display:flex;
		width:100%;
		justify-content:center;
		padding:14px 18px;
	}

}