/**
 * SWM subscribe form — default styling.
 * Keep minimal; themes are expected to override via their own CSS.
 *
 * @since 2.0.1
 */
.swm-subscribe-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 420px;
}

.swm-subscribe-form .swm-sub-field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}

.swm-subscribe-form button {
	padding: 10px 18px;
	background: #111;
	color: #fff;
	border: 0;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
}

.swm-subscribe-form button:hover { opacity: .9; }
.swm-subscribe-form button:disabled { opacity: .5; cursor: wait; }

.swm-sub-status {
	font-size: 14px;
	color: #374151;
	min-height: 1.4em;
}

.swm-sub-status.err { color: #b91c1c; }
.swm-sub-status.ok  { color: #166534; }
