/* Big Boss — páginas de cadastro/login (fluxo email + código). Baseado no protótipo artigo_cadastro. */
:root {
	--g: #C9A84C;
	--gd: rgba(201, 168, 76, 0.1);
	--gb: rgba(201, 168, 76, 0.22);
	--bg: #090909;
	--s2: #181818;
	--s3: #222;
	--br: rgba(255, 255, 255, 0.07);
	--br2: rgba(255, 255, 255, 0.13);
	--t: #F0EDE6;
	--t2: #7A7773;
	--t3: #444;
	--red: #E85555;
	--grn: #3DDB7A;
}

.bb-auth-body {
	margin: 0;
	min-height: 100vh;
	background: var(--bg);
	color: var(--t);
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
}

.bb-auth-screen {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 16px 48px;
}

.signup-wrap {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}

.signup-logo {
	display: flex;
	align-items: center;
	gap: 7px;
	justify-content: center;
	margin-bottom: 32px;
}

.signup-logo-text {
	font-family: Syne, sans-serif;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -0.04em;
	color: var(--t);
}

.signup-logo-dot {
	width: 8px;
	height: 8px;
	background: var(--g);
	border-radius: 50%;
}

.signup-step.on {
	display: block;
}

.su-title {
	font-family: Syne, sans-serif;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin-bottom: 6px;
	text-align: center;
}

.su-sub {
	font-size: 13px;
	color: var(--t2);
	text-align: center;
	line-height: 1.6;
	margin-bottom: 24px;
}

.su-email-strong {
	color: var(--t);
}

.su-social {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 18px;
}

.su-social-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	color: var(--t);
	background: var(--s2);
	border: 1px solid var(--br2);
	border-radius: 10px;
	padding: 12px;
	cursor: not-allowed;
	opacity: 0.75;
}

.su-soon {
	font-size: 11px;
	color: var(--t2);
	margin-left: 6px;
}

.su-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	color: var(--t2);
	margin-bottom: 18px;
}

.su-divider::before,
.su-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--br);
}

.su-field {
	margin-bottom: 12px;
}

.su-label {
	display: block;
	font-size: 11px;
	color: var(--t2);
	margin-bottom: 5px;
	letter-spacing: 0.03em;
}

.su-input {
	width: 100%;
	box-sizing: border-box;
	background: var(--s2);
	border: 1px solid var(--br2);
	border-radius: 10px;
	padding: 12px 14px;
	color: var(--t);
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	outline: none;
	transition: border-color 0.15s;
}

.su-input:focus {
	border-color: var(--g);
}

.su-submit {
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	background: var(--g);
	border: none;
	border-radius: 10px;
	padding: 14px;
	cursor: pointer;
	margin-top: 16px;
	transition: opacity 0.15s;
	text-align: center;
	box-sizing: border-box;
}

.su-submit:hover {
	opacity: 0.88;
}

.su-submit-link {
	display: block;
	text-decoration: none;
}

.su-fine {
	font-size: 11px;
	color: var(--t2);
	text-align: center;
	line-height: 1.6;
	margin-top: 14px;
}

.su-fine a,
.su-fine-mt a {
	color: var(--g);
	text-decoration: none;
}

.su-fine-mt {
	margin-top: 12px;
}

.bb-auth-alert {
	background: rgba(232, 85, 85, 0.12);
	border: 1px solid rgba(232, 85, 85, 0.35);
	color: #f5c2c2;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 12px;
	margin-bottom: 14px;
}

.bb-auth-success {
	background: rgba(61, 219, 122, 0.12);
	border: 1px solid rgba(61, 219, 122, 0.35);
	color: #c2f5d8;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 12px;
	margin-bottom: 14px;
}

.bb-auth-form {
	margin: 0;
}

.bb-auth-inline-form {
	margin: 0;
}

.su-activation {
	text-align: center;
	position: relative;
}

.su-activation-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--gd);
	border: 2px solid var(--gb);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--g);
}

.su-code-wrap {
	position: relative;
	margin: 24px 0;
	min-height: 56px;
}

.su-code-row {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	pointer-events: none;
}

.su-code-digit {
	width: 44px;
	height: 52px;
	background: var(--s2);
	border: 1px solid var(--br2);
	border-radius: 10px;
	font-family: Syne, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--t);
	display: flex;
	align-items: center;
	justify-content: center;
}

.su-code-digit.filled {
	border-color: var(--g);
	background: rgba(201, 168, 76, 0.08);
}

.su-code-input-real {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 56px;
	opacity: 0.02;
	cursor: text;
	z-index: 2;
	font-size: 22px;
	letter-spacing: 0.35em;
	text-align: center;
	caret-color: transparent;
	border: none;
	background: transparent;
}

.su-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.su-resend {
	font-size: 12px;
	color: var(--t2);
	text-align: center;
	margin-top: 16px;
}

.su-resend-btn {
	background: none;
	border: none;
	color: var(--g);
	cursor: pointer;
	font-size: 12px;
	text-decoration: underline;
	padding: 0;
	font-family: inherit;
}

.su-welcome {
	text-align: center;
}

.su-welcome-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--g);
	background: var(--gd);
	border: 1px solid var(--gb);
	border-radius: 20px;
	padding: 4px 12px;
	margin-bottom: 16px;
}

.su-welcome-mark {
	font-family: Syne, sans-serif;
	font-size: 52px;
	font-weight: 800;
	color: var(--g);
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 12px;
}

.su-welcome-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 24px 0;
}

.su-stat {
	background: var(--s2);
	border: 1px solid var(--br);
	border-radius: 10px;
	padding: 12px;
	text-align: center;
}

.su-stat-val {
	font-family: Syne, sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--g);
}

.su-stat-lbl {
	font-size: 10px;
	color: var(--t2);
	margin-top: 2px;
}
