/* VAYU SMS Waitlist — minimal styling that matches xootix waitlist popup aesthetic */

.vayu-sms-optin {
	margin-top: 18px;
	padding-top: 18px;
	font-family: inherit;
	box-sizing: border-box;
}

.vayu-sms-optin *,
.vayu-sms-optin *::before,
.vayu-sms-optin *::after {
	box-sizing: border-box;
}

.vayu-sms-divider {
	position: relative;
	text-align: center;
	margin-bottom: 14px;
	color: #888;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.vayu-sms-divider::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #e5e5e5;
	z-index: 0;
}
.vayu-sms-divider span {
	position: relative;
	background: #fff;
	padding: 0 12px;
	z-index: 1;
}

.vayu-sms-tagline {
	font-size: 13px;
	color: #444;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.vayu-sms-field {
	margin-bottom: 10px;
}

.vayu-sms-field input[type="tel"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.3;
	background: #fff;
	color: #1a1a1a;
}
.vayu-sms-field input[type="tel"]:focus {
	border-color: #2c5f2d;
	outline: 2px solid rgba(44, 95, 45, 0.2);
	outline-offset: 0;
}
.vayu-sms-field input[type="tel"]:disabled {
	background: #f5f5f5;
	color: #888;
}

.vayu-sms-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 11px;
	line-height: 1.45;
	color: #333;
	cursor: pointer;
}
.vayu-sms-consent input[type="checkbox"] {
	margin: 2px 0 0 0;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
}
.vayu-sms-consent-text {
	flex: 1 1 auto;
}
.vayu-sms-consent-optional {
	color: #666;
}

.vayu-sms-button {
	width: 100%;
	padding: 12px 16px;
	background: #2c5f2d;
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.15s ease;
}
.vayu-sms-button:hover:not(:disabled) {
	background: #1e4a1f;
}
.vayu-sms-button:disabled {
	background: #9aaa9b;
	cursor: not-allowed;
}

.vayu-sms-message {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.4;
	min-height: 18px;
}
.vayu-sms-message.vayu-sms-error {
	color: #c0392b;
}
.vayu-sms-message.vayu-sms-success {
	color: #1e7e34;
	font-weight: 500;
}

/* Tighten inside xootix popup */
.xoo-wl-popup .vayu-sms-optin {
	padding-top: 12px;
}
