/**
 * Minimal onboarding / auth CSS starter
 */

.swapr-auth-shell {
	min-height: 100vh;
	padding: 28px;
	background: #0f1115;
	color: #f4f4f4;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.swapr-auth-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.swapr-auth-brand-mark {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #232938;
	font-size: 20px;
	font-weight: 700;
}

.swapr-auth-title {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
}

.swapr-auth-tag {
	margin: 4px 0 0;
	font-size: 13px;
	opacity: 0.75;
}

.swapr-auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
	gap: 20px;
	align-items: stretch;
}

.swapr-auth-panel {
	background: #171b24;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 20px;
	padding: 22px;
}

.swapr-auth-panel-intro {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 420px;
}

.swapr-auth-kicker {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.7;
	margin-bottom: 12px;
}

.swapr-auth-heading {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.1;
}

.swapr-auth-copy {
	margin: 0;
	font-size: 15px;
	opacity: 0.82;
	max-width: 46ch;
}

.swapr-auth-progress {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.swapr-auth-dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	border: 0;
	background: rgba(255,255,255,0.18);
	cursor: pointer;
}

.swapr-auth-dot.is-active {
	background: #ffffff;
}

.swapr-auth-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.swapr-auth-tab {
	padding: 10px 14px;
	border-radius: 999px;
	border: 0;
	background: #232938;
	color: #fff;
	cursor: pointer;
}

.swapr-auth-tab.is-active {
	background: #ffffff;
	color: #111;
}

.swapr-auth-form-wrap {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.swapr-auth-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.swapr-auth-form-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 6px;
}

.swapr-auth-status {
	margin-top: 6px;
	padding: 12px;
	border-radius: 12px;
	background: #202634;
	font-size: 13px;
	opacity: 0.9;
}

@media (max-width: 980px) {
	.swapr-auth-layout {
		grid-template-columns: 1fr;
	}

	.swapr-auth-panel-intro {
		min-height: auto;
	}
}
