/* ══════════════════════════════════════════════════════════════════════════
   TickClip Creators — Auth Pages
   Brand: navy (#0F1F3D) + blue-indigo gradient (#2563EB → #4F46E5)
   ══════════════════════════════════════════════════════════════════════════ */
body.tcc-standalone {
	margin: 0;
	padding: 0;
	font-family: 'Outfit', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* ── Auth Pages ─────────────────────────────────────────────────────────── */
.tcc-auth-main {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0F1F3D 0%, #1e3a5f 50%, #2563EB 100%);
	padding: 24px;
}

.tcc-auth {
	width: 100%;
	max-width: 440px;
}

.tcc-auth__card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tcc-auth__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: 'Syne', 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: #0F1F3D;
	margin-bottom: 24px;
}
.tcc-auth__logo strong {
	font-weight: 800;
	background: linear-gradient(135deg, #2563EB, #4F46E5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.tcc-auth__title {
	text-align: center;
	font-family: 'Syne', 'Outfit', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #0F1F3D;
	margin: 0 0 4px;
}

.tcc-auth__subtitle {
	text-align: center;
	font-size: 14px;
	color: #64748b;
	margin: 0 0 28px;
}

/* ── Social Login Buttons ───────────────────────────────────────────────── */
.tcc-auth__social {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 4px;
}
.tcc-auth__social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 11px 16px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	color: #334155;
	cursor: not-allowed;
	font-family: inherit;
	transition: background 0.15s, border-color 0.15s;
	position: relative;
	opacity: 0.7;
}
.tcc-auth__social-btn:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}
.tcc-auth__social-btn--apple {
	color: #0F1F3D;
}
.tcc-auth__coming-soon {
	position: absolute;
	right: 12px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #94a3b8;
	background: #f1f5f9;
	padding: 2px 8px;
	border-radius: 10px;
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
.tcc-auth__divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 0;
	color: #94a3b8;
	font-size: 13px;
}
.tcc-auth__divider::before,
.tcc-auth__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

/* ── Terms ────────────────────────────────────────────────────────────────── */
.tcc-auth__terms {
	font-size: 12px;
	color: #94a3b8;
	text-align: center;
	margin: 0;
	line-height: 1.5;
}

.tcc-auth__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tcc-auth__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.tcc-auth__field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tcc-auth__field label {
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

.tcc-auth__field input {
	padding: 10px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	font-size: 15px;
	color: #0F1F3D;
	background: #f8fafc;
	transition: border-color 0.15s, box-shadow 0.15s;
	font-family: inherit;
}

.tcc-auth__field input:focus {
	outline: none;
	border-color: #2563EB;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
	background: #fff;
}

.tcc-auth__field input::placeholder {
	color: #94a3b8;
}

.tcc-auth__field--code {
	text-align: center;
}

.tcc-auth__code-input {
	text-align: center;
	font-size: 28px !important;
	font-weight: 700;
	letter-spacing: 12px;
	padding: 14px !important;
	font-family: 'SF Mono', 'Fira Code', monospace !important;
}

.tcc-auth__options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}

.tcc-auth__remember {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #475569;
	cursor: pointer;
}

.tcc-auth__forgot {
	color: #2563EB;
	text-decoration: none;
	font-weight: 500;
}
.tcc-auth__forgot:hover {
	text-decoration: underline;
}

.tcc-auth__btn {
	padding: 12px;
	background: linear-gradient(135deg, #2563EB, #4F46E5);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s, transform 0.1s;
	font-family: inherit;
	margin-top: 4px;
}
.tcc-auth__btn:hover {
	opacity: 0.9;
}
.tcc-auth__btn:active {
	transform: scale(0.98);
}

.tcc-auth__footer {
	text-align: center;
	font-size: 14px;
	color: #64748b;
	margin: 20px 0 0;
}
.tcc-auth__footer a {
	color: #2563EB;
	font-weight: 600;
	text-decoration: none;
}
.tcc-auth__footer a:hover {
	text-decoration: underline;
}

.tcc-auth__link-btn {
	background: none;
	border: none;
	color: #2563EB;
	font-weight: 600;
	cursor: pointer;
	font-size: inherit;
	font-family: inherit;
	text-decoration: underline;
	padding: 0;
}

.tcc-auth__resend {
	margin-top: -8px;
}

.tcc-auth__strength {
	height: 3px;
	border-radius: 3px;
	margin-top: 4px;
	transition: width 0.3s, background 0.3s;
}

/* ── Flash Alerts ───────────────────────────────────────────────────────── */
.tcc-alert {
	max-width: 440px;
	margin: 0 auto 16px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
}
.tcc-alert--success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}
.tcc-alert--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

@media (max-width: 480px) {
	.tcc-auth__card {
		padding: 28px 20px;
	}
	.tcc-auth__row {
		grid-template-columns: 1fr;
	}
}
