/* Shortcode form */
.mwea-welcome-form {
	max-width: 420px;
}

.mwea-welcome-form .mwea-field {
	margin-bottom: 14px;
}

.mwea-welcome-form label {
	display: block;
	margin-bottom: 4px;
	font-weight: 600;
}

.mwea-welcome-form input[type="text"],
.mwea-welcome-form input[type="email"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 4px;
}

.mwea-welcome-form .mwea-consent label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
}

.mwea-welcome-form button {
	background: #2271b1;
	color: #fff;
	border: 0;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.mwea-welcome-form .mwea-message {
	margin-top: 10px;
	font-size: 13px;
}

.mwea-welcome-form .mwea-message.success { color: #0a7d34; }
.mwea-welcome-form .mwea-message.error { color: #c0392b; }

/* Popup base */
.mwea-popup {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
}

.mwea-popup[hidden] { display: none; }

.mwea-popup__overlay {
	position: absolute;
	inset: 0;
	background: #000;
}

.mwea-popup__panel {
	position: relative;
	background: #fff;
	margin: auto;
	max-width: 480px;
	width: calc(100% - 32px);
	border-radius: 8px;
	padding: 32px;
	box-shadow: 0 10px 40px rgba(0,0,0,.2);
}

.mwea-popup__close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}

.mwea-popup__body h2 {
	margin-top: 0;
}

.mwea-popup-form input[type="email"] {
	width: 100%;
	padding: 10px 12px;
	margin-bottom: 10px;
	border: 1px solid #d0d5dd;
	border-radius: 4px;
}

.mwea-popup-form .mwea-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	margin-bottom: 12px;
}

.mwea-popup-form button {
	background: #2271b1;
	color: #fff;
	border: 0;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
}

/* Design: classic */
.mwea-popup--classic .mwea-popup__panel { text-align: center; }

/* Design: split */
.mwea-popup--split .mwea-popup__panel {
	display: flex;
	max-width: 640px;
	padding: 0;
	overflow: hidden;
}
.mwea-popup--split .mwea-popup__image {
	flex: 1 1 45%;
	background-size: cover;
	background-position: center;
	min-height: 280px;
}
.mwea-popup--split .mwea-popup__body {
	flex: 1 1 55%;
	padding: 32px;
}

/* Design: minimal */
.mwea-popup--minimal .mwea-popup__panel {
	box-shadow: none;
	border: 1px solid #e2e2e2;
	max-width: 360px;
	padding: 24px;
}

/* Design: bottom bar */
.mwea-popup--bottom { align-items: flex-end; }
.mwea-popup--bottom .mwea-popup__panel {
	max-width: none;
	width: 100%;
	margin: 0;
	border-radius: 0;
	display: flex;
	align-items: center;
	gap: 24px;
}
.mwea-popup--bottom .mwea-popup-form {
	display: flex;
	gap: 8px;
	flex: 1;
}
.mwea-popup--bottom .mwea-popup-form input[type="email"] { margin-bottom: 0; }
.mwea-popup--bottom .mwea-popup-form button { width: auto; }

/* Design: side */
.mwea-popup--side { justify-content: flex-end; }
.mwea-popup--side .mwea-popup__panel {
	margin: auto 0;
	max-width: 340px;
	height: 100%;
	border-radius: 0;
	overflow-y: auto;
}

@media (max-width: 600px) {
	.mwea-popup--split .mwea-popup__panel { flex-direction: column; }
	.mwea-popup--split .mwea-popup__image { min-height: 140px; }
	.mwea-popup--bottom .mwea-popup__panel { flex-direction: column; align-items: stretch; }
}
