html {
	scroll-behavior: smooth;
}

b, strong {
	font-weight: 500;
}
/* Cancel the bg white for dark mode */
body[data-theme-style="dark"].bg-white {
	background: var(--body-bg) !important;
}

/* App */
.app {
	background: var(--gray-50);
}

.app-container {
}

.app-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--gray-100);
	z-index: 100;
	opacity: .5;
}

.app-sidebar {
	display: flex;
	flex-direction: column;
	min-width: 260px;
	max-width: 260px;
	background: var(--white);
	border-right: 2px solid var(--gray-200);
	margin-left: -262px;
	transition: margin .15s linear;
	overflow-y: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: 101;
}

[dir="rtl"] .app-sidebar {
	margin-left: initial;
	left: initial;
	right: 0;
	margin-right: -262px;
}

[dir="rtl"] [data-theme-style="dark"] .app-sidebar {
	border-right: 0;
	border-left: 2px solid var(--gray-200);
}

body.app-sidebar-opened .app-sidebar {
	margin-left: 0;
}

[dir="rtl"] body.app-sidebar-opened .app-sidebar {
	margin-right: 0;
}

@media (min-width: 992px) {
	.app-sidebar {
		margin-left: 0;
	}

	[dir="rtl"] .app-sidebar {
		margin-right: 0;
	}
}

.app-sidebar-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5rem;
	height: 75px;
}

.app-sidebar-title a {
	font-size: 1.4rem;
	color: var(--gray-900);
	font-weight: 600;
}

.app-sidebar-title a:hover {
	text-decoration: none;
}

.app-sidebar-footer {
	width: 100%;
}

.app-sidebar-footer > a {
	width: 100%;
	padding: .75rem 1.75rem;
	border-top: 2px solid var(--gray-200);
	display: flex;
	align-items: center;
	color: var(--gray-500);
	font-size: .9rem;
	font-weight: 500;
	transition: background .3s;
}

.app-sidebar-footer > a:hover {
	text-decoration: none;
	background: var(--gray-200);
	color: var(--gray-600);
}

.app-sidebar-links-wrapper {
	overflow-y: scroll;
	width: calc(100% - 6px);
	padding-bottom: .25rem;
}

.app-sidebar-links-wrapper:hover {
	width: 100%;
}

.app-sidebar-links-wrapper::-webkit-scrollbar {
	background-color: transparent;
	width: 0;
}

.app-sidebar-links-wrapper::-webkit-scrollbar-thumb {
	background: var(--gray-200);
	border-radius: 10px;
}

.app-sidebar-links-wrapper:hover::-webkit-scrollbar {
	width: 6px;
}

.app-sidebar-links-wrapper:hover::-webkit-scrollbar-track {
	width: 6px;
}

.app-sidebar-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;

}

.app-sidebar-links > li {
	width: 100%;
	padding: 0.25rem calc(0.75rem - 6px) 0.25rem 0.75rem;
}

.app-sidebar-links > .divider-wrapper {
	width: 100%;
	padding: 0 calc(0.75rem - 6px) 0 0.75rem;
	margin: .25rem 0;
}

.app-sidebar-links > .divider-wrapper > .divider {
	border-top: 2px solid var(--gray-200);
}


.app-sidebar-links > li > a {
	width: 100%;
	display: flex;
	align-items: center;
	color: var(--gray-600);
	border-radius: var(--border-radius);
	padding: 0.75rem 1rem;
	transition: background .3s;
	font-size: .9rem;
	font-weight: 500;
}

.app-sidebar-links > li > a:hover {
	text-decoration: none;
	background: var(--gray-200);
	color: var(--gray-600);
}

[data-theme-style="dark"] .app-sidebar-links > li > a:hover {
	background: var(--gray-200);
	color: var(--gray-800);
}

.app-sidebar-links > li.active > a {
	background: var(--primary);
	color: var(--white);
	font-weight: 500;
}

[data-theme-style="dark"] .app-sidebar-links > li.active > a {
	background: var(--primary-800);
	color: var(--white);
}

.app-sidebar-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.app-sidebar-footer-block {
	max-width: 100%;
}

.app-sidebar-footer-text {
	color: var(--gray-600);
}

.app-content {
	margin-left: 0;
	flex-grow: 1;
}

[dir="rtl"] .app-content {
	margin-left: initial;
	margin-right: 0;
}

@media (min-width: 992px) {
	.app-content {
		margin-left: 260px;
	}
	[dir="rtl"] .app-content {
		margin-left: initial;
		margin-right: 260px;
	}
}

.app-navbar {
	min-height: 75px;
	border-bottom: 2px solid var(--gray-200);
}

[data-theme-style="dark"] .app-navbar {
	border-color: var(--gray-200);
}

[data-theme-style="dark"] .app-navbar {
	border-color: var(--gray-200);
}

/* Modal */
.modal-header {
	padding: 1rem;
	border-bottom: 0;
}

.modal-subheader {
	padding: 0 1rem;
	border-bottom: 0;
	margin: 0;
}

.modal-content {
	padding: 1rem;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

/* Forms */
.input-group-text {
	font-size: 0.9rem;
}

/* Footer */
.footer {
	margin: 4rem 0 0 0;
	padding-top: 3rem;
	padding-bottom: 3rem;
	background: var(--white);
	border-top: 2px solid var(--gray-200);
}

.footer {
	color: var(--gray);
}

.footer a:not(.dropdown-item), .footer a:hover:not(.dropdown-item) {
	color: var(--gray);
}

.footer a.icon {
	color: var(--gray);
}

.footer button, .footer button:hover {
	color: var(--gray) !important;
}

.footer-logo {
	max-height: 4rem;
	height: 4rem;
	width: auto;
	object-fit: contain;
}

/* App footer */
.app-footer {
	border: 2px solid var(--gray-200);
	border-radius: var(--border-radius);
	margin: 0;
	padding: 1.25rem;
}

/* Filters */
.filters-dropdown {
	width: 18rem;
	max-height: 30rem;
	overflow-y: auto;
}

/* Custom breadcrumbs */
.custom-breadcrumbs {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.custom-breadcrumbs > li {
	margin-right: .5rem;
}

.custom-breadcrumbs > li > a {
	color: var(--gray);
}

.custom-breadcrumbs > li > svg {
	color: var(--gray-400);
	margin-left: .5rem;
}

.custom-breadcrumbs > li.active {
}

/* Helper classes */
.list-style-none {
	list-style: none;
	padding: 0;
}

.clickable {
	cursor: pointer;
}

.no-underline, .no-underline:hover{
	text-decoration: none;
}

.icon-favicon {
	width: 1rem;
	height: 1rem;
}

/* Index navbar */
.navbar-index {
	min-height: 0 !important;
	background: hsla(0, 0%, 100%, 0.25);
}

[data-theme-style="dark"] .navbar-index {
	background: hsla(0, 0%, 0%, 0.25);
}

.navbar-index .navbar-nav > li {
	padding: .5rem 0 !important;
}

@media (min-width: 992px) {
	.navbar-index .navbar-nav > li {
		padding: .5rem !important;
	}
}

/* Dropdown */
.dropdown-item:hover, .dropdown-item:focus {
	border-radius: var(--border-radius);
}

.dropdown-item svg {
	color: var(--gray-600);
}

.dropdown-item:active svg {
	color: var(--white);
}

/* Navbar */
.navbar-main {
	min-height: 0 !important;
	padding-top: .5rem;
	padding-bottom: .5rem;
	background: var(--white);
	border-bottom: 2px solid var(--gray-200);
}

.navbar-main .navbar-nav > li {
	padding: .5rem 0 !important;
}

@media (min-width: 992px) {
	.navbar-main .navbar-nav > li {
		padding: .5rem !important;
	}
}

.navbar-logo {
	max-height: 4rem;
	height: 4rem;
	width: auto;
	object-fit: contain;
}

.navbar-avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.navbar-custom-toggler {
	padding: 0.5rem .8rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border-radius: var(--border-radius);

	color: var(--gray-700);
	border-color: var(--gray-300);
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255,255,255,.85);
}

.chart-container {
	position: relative;
	margin: auto;
	height: 250px;
	width: 100%;
}

/* Dropdown */
.dropdown-toggle-simple::after {
	display:none;
}

/* Old index styles removed — replaced by Temanbio landing page CSS */


.user-avatar {
	border-radius: 50%;
	max-width: 80px;
	max-height: 80px;
}

/* Link Settings page */
.link-background-type-preset {
	width: 100%;
	height: 4rem;
	border-radius: var(--border-radius);
	opacity: .75;
	transition: .3s opacity;
}

.link-background-type-preset:hover {
	cursor: pointer;
}

input[type="radio"]:checked ~ .link-background-type-preset {
	opacity: 1;
}

.link-background-type-image {
	border-radius: var(--border-radius);
	margin-bottom: .5rem;
}

/* Biolink theme */
.link-biolink-theme {
	opacity: .75;
	transition: .3s opacity, .3s border-color;
}

.link-biolink-theme:hover {
	cursor: pointer;
	border-color: var(--primary);
}

input[type="radio"]:checked ~ .link-biolink-theme {
	opacity: 1;
	border-color: var(--primary);
}

/* Biolink preview iframe */
.biolink-preview-container {

}

.biolink-preview {
	position: relative;
	margin: 0 auto;
	height: auto;
	width: auto;
	display: inline-block;
	text-align: left;
	border-radius: 4rem;
	padding: .7rem;
	background: linear-gradient(45deg,#444,#111);
	box-shadow: 0 0px 30px rgba(0,0,0,0.20);
	border: .3rem solid #444546;
}

.biolink-preview-iframe-container {
	overflow: hidden;
	width: 300px;
	height: 625px;
	border-radius: 3rem;
	position: relative;
}

@media (min-width: 768px) {
	.biolink-preview-iframe-container {
		width: 375px;
		height: 800px;
	}
}

.biolink-preview-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	padding: 0;
}

/* Others */
.container-disabled {
	pointer-events: none;
	opacity: .5;
}

.container-disabled-simple {
	pointer-events: none;
}

/* Custom dropdown */
.dropdown .dropdown-menu {
	border: 2px solid var(--gray-200);
}

.dropdown-divider {
	border-top: 2px solid var(--gray-200);
}

/* Custom row */
.custom-row {
	border-radius: var(--border-radius);
	padding: 1.25rem;
	position: relative;
	border: 2px solid var(--gray-200);
	background: var(--white);
}

.custom-row-inactive {
	background: var(--gray-200);
}

.custom-row-side-controller {
	right: 100%;
	top: 25%;
	font-size: 1.2em;
	padding: .2em .2em;
}

[dir="rtl"] .custom-row-side-controller {
	right: initial;
	left: 100%;
}

@media (min-width: 992px) {
	.custom-row-side-controller {
		position: absolute;
		padding: .4em .8em;
	}
}

.custom-row-side-controller-grab {
	cursor: grab;
}


/* Tables */
.table-custom-container {
	border-radius: var(--border-radius);
	border: 2px solid var(--gray-200);
}

.table-custom {
	margin-bottom: 0;
}

.table-custom thead th {
	border-top: 0;
	border-bottom: 0;
	background: var(--gray-100);
	color: var(--gray-900)
}

.table-custom th {
	padding: 1.25rem 1rem;
}

.table-custom td {
	padding: 1.75rem 1rem;
	background: var(--white);
	vertical-align: middle;
}

.table-custom tbody tr {
	transition: all .3s ease-in-out;
}

.table-custom tbody tr:hover td {
	background: var(--gray-100);
}

/* Helpers */
.appearance-none {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.select-custom-altum {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232D3748' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
	padding: .375rem 1.75rem .375rem .75rem;
	background-color: var(--gray-200);
}

[data-theme-style="dark"] .select-custom-altum {
	background-color: var(--gray-100);
}

/* Pricing */
.pricing-plan {
	border: 2px solid var(--gray-200);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.2rem 2.2rem 0 2.2rem;
	background: var(--white);
	border-bottom: 2px solid var(--gray-200);
}

[data-theme-style="dark"] .pricing-header {
	border-color: var(--gray-100);
}

.pricing-name {
	background: var(--primary-200);
	padding: .15rem 1.25rem;
	color: var(--primary-600);
	font-size: .85rem;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: var(--border-radius);
}

.pricing-price {
	margin: 1rem 0;
}

.pricing-price-amount {
	font-size: 3.3rem;
	font-weight: bold;
}

.pricing-price-currency {
	font-size: .9rem;
	color: var(--gray);
}

.pricing-details {
	text-align: center;
	font-size: .85rem;
	color: var(--primary-800);
	margin-bottom: 1.5rem;
}

.pricing-body {
	padding: 0 2.2rem 2.2rem 2.2rem;
	background: var(--white);
	height: 100%;
}

.pricing-features {
	margin: 3rem 0;
	list-style: none;
	padding: 0;
}

.pricing-features li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1rem 0;
}

/* Custom Radio Boxes */
.custom-radio-box {
	cursor: pointer;
}

.custom-radio-box .custom-radio-box-main-text {
	font-size: 1.15rem;
	font-weight: bold;
}

.custom-radio-box .custom-radio-box-main-icon {
	font-size: 1.25rem;
}

.custom-radio-box input[type="radio"] + div {
	transition: all .3s ease-in-out;
	border: 2px solid var(--gray-200);
	background: var(--white);
}

.custom-radio-box input[type="radio"]:checked + div {
	border: 2px solid var(--primary);
}

.custom-radio-box input[type="radio"]:hover + div {
	border: 2px solid var(--primary);
}

/* QR Codes */
.qr-code {
	width: 100rem;
}

.qr-code-loading {
	animation: opacity-loading 3s infinite ease-in-out;
}

@keyframes opacity-loading {
	0% { opacity: 1; }
	50% { opacity: 0.5; }
	100% { opacity: 1; }
}

.qr-code-avatar {
	width: 65px;
	height: 65px;
	border-radius: var(--border-radius);
	padding: .25rem;
	border: 2px solid var(--gray-200);
}

/* Round circles */
.round-circle-md {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.round-circle-lg {
	width: 4.5rem;
	height: 4.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

/* Badge colors */
.badge-primary {
	color: hsl(211, 100%, 35%);
	background-color: hsl(211, 100%, 85%);
}

[data-theme-style="dark"] .badge-primary {
	background-color: hsl(211, 100%, 35%);
	color: hsl(211, 100%, 85%);
}

.badge-secondary {
	color: hsl(208, 7%, 35%);
	background-color: hsl(208, 7%, 85%);
}

[data-theme-style="dark"] .badge-secondary {
	background-color: hsl(208, 7%, 35%);
	color: hsl(208, 7%, 85%);
}

.badge-success {
	color: hsla(134, 50%, 30%, 1);
	background-color: hsla(134, 50%, 85%, 1);
}

[data-theme-style="dark"] .badge-success {
	background-color: hsla(134, 50%, 30%, 1);
	color: hsla(134, 50%, 85%, 1);
}

.badge-danger {
	color: hsla(354, 70%, 35%, 1);
	background-color: hsla(354, 70%, 85%, 1);
}

[data-theme-style="dark"] .badge-danger {
	background-color: hsla(354, 70%, 35%, 1);
	color: hsla(354, 70%, 85%, 1);
}

.badge-warning {
	background-color: hsla(45, 100%, 85%, 1);
	color: hsla(40, 80%, 30%, 1);
}

[data-theme-style="dark"] .badge-warning {
	background-color: hsla(50, 10%, 20%, 1);
	color: hsla(45, 100%, 85%, 1);
}

.badge-info {
	color: hsla(188, 60%, 30%, 1);
	background-color: hsla(188, 78%, 85%, 1);
}

[data-theme-style="dark"] .badge-info {
	background-color: hsla(188, 60%, 30%, 1);
	color: hsla(188, 78%, 85%, 1);
}

.badge-light {
	color: hsla(210, 15%, 35%, 1);
	background-color: hsl(210, 17%, 95%);
}

[data-theme-style="dark"] .badge-light {
	background-color: hsla(210, 15%, 35%, 1);
	color: hsl(210, 17%, 95%);
}

.badge-dark {
	color: hsla(210, 10%, 90%, 1);
	background-color: hsla(210, 10%, 20%, 1);
}

[data-theme-style="dark"] .badge-dark {
	background-color: hsla(210, 10%, 90%, 1);
	color: hsla(210, 10%, 20%, 1);
}

/* Invoice css */
.invoice-table th {
	border-top: 0 !important;
}

@media print {
	.invoice-logo {
		filter: grayscale(100%);
	}
}

/* Base animation */
.altum-animate {
	-webkit-animation-duration:1s;
	animation-duration:1s;
}

.altum-animate-fill-both {
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

.altum-animate-fill-none {
	-webkit-animation-fill-mode:none;
	animation-fill-mode:none;
}

@-webkit-keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
@keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
.altum-animate-fade-in {
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn
}


/* App sub menu */
.account-header-navbar {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-left: 0;
	list-style: none;
	margin: 0 0 1.5rem 0;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 .25rem;
}

@media (min-width: 992px) {
	.account-header-navbar {
		flex-direction: row;
	}
}

.account-header-navbar .nav-item {
	margin-bottom: .5rem;
	min-width: fit-content;
}

.account-header-navbar .nav-link, .btn-custom {
	padding: .5rem 1.5rem;
	color: var(--gray);
	border-radius: var(--border-radius);
	border: 2px solid var(--gray-200);
	font-size: .9rem;
	background: var(--white);
}

.account-header-navbar .nav-link:hover, .btn-custom:hover {
	color: var(--gray);
	border: 2px solid var(--gray);
}

.account-header-navbar .nav-link.active, .btn-custom.active {
	color: var(--primary);
	border: 2px solid var(--primary);
}

/* Blog */
.blog-post-image {
	max-height: 25rem;
	object-fit: cover;
}

/* File input */
.altum-file-input {
	padding: 1rem;
	background: var(--gray-100);
	border: 2px solid var(--gray-200);
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: .9rem;
}

.altum-file-input:hover {
	border-color: var(--gray-300);
}

.altum-file-input::file-selector-button {
	border: 0;
	padding: .4rem .75rem;
	border-radius: var(--border-radius);
	background-color: var(--white);
	cursor: pointer;
	font-size: .9rem;
	margin-right: 1rem;
}

.w-fit-content {
	width: fit-content;
}

.sticky {
	position: sticky !important;
	top: 1rem;
	height: min-content;
}

/* Icons on links animations */
a svg {
	transition: transform .15s;
}

a:hover svg {
	transform: scale(1.1);
}

a:active svg {
	transform: scale(.9);
}

/* Color picker border */
.pcr-button {
	border: 1px solid white !important;
	outline: 1px solid var(--gray-300) !important;
}

/* Temanbio brand color override - BantuTeman green #00A854 */
:root {
    --primary: #00A854 !important;
    --primary-100: #e6fff4 !important;
    --primary-200: #b3ffd9 !important;
    --primary-300: #80ffbf !important;
    --primary-400: #4dffa4 !important;
    --primary-600: #008543 !important;
    --primary-700: #006633 !important;
    --primary-800: #004d26 !important;
    --primary-900: #003319 !important;
}
.btn-primary { background-color: #00A854 !important; border-color: #00A854 !important; }
.btn-primary:hover { background-color: #008543 !important; border-color: #008543 !important; }
.btn-outline-primary { color: #00A854 !important; border-color: #00A854 !important; }
.btn-outline-primary:hover { background-color: #00A854 !important; border-color: #00A854 !important; }
.text-primary { color: #00A854 !important; }
.bg-primary { background-color: #00A854 !important; }
.border-primary { border-color: #00A854 !important; }


/* ===== TEMANBIO LANDING PAGE ===== */

/* --- Base --- */
.tb-landing { overflow-x: hidden; }
.min-vh-60 { min-height: 60vh; }

/* --- Hero Section --- */
.tb-hero {
    position: relative;
    background: linear-gradient(135deg, #00A854 0%, #007a3d 40%, #00582b 100%);
    color: #fff;
    overflow: hidden;
    padding-bottom: 80px;
}

[data-theme-style="dark"] .tb-hero {
    background: linear-gradient(135deg, #00A854 0%, #006b33 50%, #003d1c 100%);
}

.tb-hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.tb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: tb-float 6s ease-in-out infinite;
}
.tb-orb-1 { width: 400px; height: 400px; background: #4ade80; top: -100px; left: -100px; animation-delay: 0s; }
.tb-orb-2 { width: 350px; height: 350px; background: #00d97e; bottom: -50px; right: -80px; animation-delay: 2s; }
.tb-orb-3 { width: 250px; height: 250px; background: #6ee7b7; top: 40%; left: 50%; animation-delay: 4s; }

@keyframes tb-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -30px); }
    66% { transform: translate(-15px, 20px); }
}

.tb-badge {
    display: inline-block;
    padding: .4rem 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    color: #fff;
}

.tb-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.02em;
}

@media (min-width: 992px) {
    .tb-hero-title { font-size: 3.8rem; }
}

.tb-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 560px;
}

.tb-btn-primary {
    padding: .8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    color: #00A854;
    border: none;
    border-radius: 12px;
    transition: all .3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.tb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: #007a3d;
}

.tb-btn-outline {
    padding: .8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    transition: all .3s ease;
}
.tb-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* --- Hero Mockup (Phone) --- */
.tb-hero-mockup { position: relative; display: flex; justify-content: center; align-items: center; }
.tb-phone-frame {
    width: 220px;
    height: 420px;
    background: #1a1a1a;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: tb-phone-bob 4s ease-in-out infinite;
}
@keyframes tb-phone-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.tb-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 24px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tb-phone-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00A854, #4ade80);
    border-radius: 50%;
    margin-bottom: 8px;
}
.tb-phone-name { font-weight: 700; font-size: .9rem; color: #1a1a1a; }
.tb-phone-bio { font-size: .75rem; color: #666; margin-bottom: 16px; }
.tb-phone-links { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.tb-phone-link-item {
    background: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .8rem;
    color: #333;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s;
}
.tb-phone-link-item:hover { transform: translateX(4px); }

.tb-float-card {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #333;
    animation: tb-float-card-anim 5s ease-in-out infinite;
}
.tb-float-card strong { font-size: 1.1rem; color: #00A854; }
.tb-float-card small { color: #999; }
.tb-float-card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.tb-float-card-2 { bottom: 15%; right: -10%; animation-delay: 2.5s; }
@keyframes tb-float-card-anim {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* --- Hero Wave --- */
.tb-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--body-bg, #f8f9fa);
    line-height: 0;
}
.tb-hero-wave svg { width: 100%; height: 80px; }
[data-theme-style="dark"] .tb-hero-wave { color: #1a1a2e; }

/* --- Sections --- */
.tb-section { padding: 5rem 0; }

.tb-feature-section { background: var(--body-bg, #f8f9fa); }
[data-theme-style="dark"] .tb-feature-section { background: #1a1a2e; }

.tb-feature-alt { background: #fff; }
[data-theme-style="dark"] .tb-feature-alt { background: #16162a; }

.tb-feature-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}
.tb-feature-img-wrap:hover { transform: scale(1.02); }
.tb-feature-img { width: 100%; height: auto; display: block; }

.tb-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.tb-feature-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600, #666);
    line-height: 1.6;
}
.tb-feature-list {
    list-style: none;
    padding: 0;
}
.tb-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: .95rem;
}

/* --- Stats Section --- */
.tb-stats-section {
    background: linear-gradient(135deg, #00A854 0%, #007a3d 100%);
    padding: 4rem 0;
    color: #fff;
}
[data-theme-style="dark"] .tb-stats-section {
    background: linear-gradient(135deg, #00A854 0%, #003d1c 100%);
}
.tb-stat-card { text-align: center; }
.tb-stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.tb-stat-label {
    font-size: .95rem;
    opacity: 0.85;
    margin-top: 8px;
}

/* --- Section Titles --- */
.tb-section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.tb-section-subtitle {
    font-size: 1.1rem;
}

/* --- Feature Grid Cards --- */
.tb-grid-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all .3s ease;
}
[data-theme-style="dark"] .tb-grid-card {
    background: #1e1e36;
    border-color: rgba(255,255,255,0.06);
}
.tb-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,168,84,0.12);
    border-color: rgba(0,168,84,0.2);
}
.tb-grid-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,168,84,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: #00A854;
}
.tb-grid-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.tb-grid-card p {
    font-size: .9rem;
    color: var(--gray-600, #666);
    line-height: 1.5;
    margin: 0;
}

/* --- Pixels Section --- */
.tb-pixels-section { padding: 4rem 0; }
.tb-pixel-badge {
    background: rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 8px;
    transition: transform .2s;
}
[data-theme-style="dark"] .tb-pixel-badge {
    background: rgba(255,255,255,0.04);
}
.tb-pixel-badge:hover { transform: scale(1.1); }

/* --- CTA Section --- */
.tb-cta-section { padding: 4rem 0; }
.tb-cta-box {
    background: linear-gradient(135deg, #00A854 0%, #007a3d 100%);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    color: #fff;
}
.tb-cta-box h2 { font-size: 2rem; font-weight: 700; color: #fff; }
.tb-cta-box .text-muted { color: rgba(255,255,255,0.8) !important; }
.tb-cta-box .tb-btn-primary { background: #fff; color: #00A854; }
.tb-cta-box .tb-btn-primary:hover { color: #007a3d; }

/* --- Scroll Reveal --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].tb-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navbar override for green hero --- */
.tb-hero .navbar-index {
    background: transparent !important;
}
.tb-hero .navbar-index .nav-link {
    color: rgba(255,255,255,0.9) !important;
}
.tb-hero .navbar-index .nav-link:hover {
    color: #fff !important;
}
.tb-hero .navbar-index .navbar-brand {
    color: #fff !important;
}
.tb-hero .navbar-index .btn-dark {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.tb-hero .navbar-index .btn-dark:hover {
    background: rgba(255,255,255,0.25);
}
.tb-hero .navbar-index .navbar-custom-toggler {
    color: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
}

/* === MODERN NAVBAR BUTTONS === */
.tb-nav-btn-ghost,
.tb-nav-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.4;
}

/* Ghost button (Masuk) — default: light bg context */
.tb-nav-btn-ghost {
    background: transparent;
    color: #1a1a1a !important;
    border: 1.5px solid #e2e8f0;
}
.tb-nav-btn-ghost:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a !important;
    text-decoration: none !important;
}

/* Solid button (Daftar) — default: green */
.tb-nav-btn-solid {
    background: #00A854;
    color: #fff !important;
    border: 1.5px solid #00A854;
    box-shadow: 0 1px 3px rgba(0,168,84,0.3);
}
.tb-nav-btn-solid:hover {
    background: #008543;
    border-color: #008543;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,168,84,0.35);
    transform: translateY(-1px);
}

/* === Hero context (green bg) — override === */
.tb-hero .navbar-index .tb-nav-btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}
.tb-hero .navbar-index .tb-nav-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff !important;
}

.tb-hero .navbar-index .tb-nav-btn-solid {
    background: #fff;
    color: #00A854 !important;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.tb-hero .navbar-index .tb-nav-btn-solid:hover {
    background: #f8fafc;
    color: #007a3d !important;
    border-color: #f8fafc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

/* === Mobile — buttons in collapsed menu === */
@media (max-width: 991px) {
    .tb-nav-btn-ghost,
    .tb-nav-btn-solid {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* ===== END TEMANBIO LANDING PAGE ===== */

/* Index (legacy overrides kept minimal) */
.index-card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}






/* ===== TEMANBIO FOOTER ===== */
.tb-footer {
    padding: 0;
}
.tb-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
}
@media (min-width: 576px) {
    .tb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
}
@media (min-width: 992px) {
    .tb-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.3fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }
}
.tb-footer-col {
    min-width: 0;
}

/* Brand col */
.tb-footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.tb-footer-logo {
    display: inline-block;
    text-decoration: none !important;
}
.tb-footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.tb-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark, #1a1a1a);
}
[data-theme-style="dark"] .tb-footer-logo-text { color: #fff; }
.tb-footer-desc {
    font-size: .85rem;
    color: var(--gray-600, #6b7280);
    line-height: 1.5;
    margin: 0;
    max-width: 260px;
}
.tb-footer-addr {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .8rem;
    color: var(--gray-500, #9ca3af);
    line-height: 1.6;
    margin-top: auto;
}
.tb-footer-addr i {
    color: #00A854;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Column titles */
.tb-footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-700, #374151);
    margin-bottom: .85rem;
}
[data-theme-style="dark"] .tb-footer-col-title { color: #d1d5db; }

/* Link lists */
.tb-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.tb-footer-list a {
    font-size: .85rem;
    color: var(--gray-600, #6b7280) !important;
    text-decoration: none !important;
    transition: color .2s, padding-left .2s;
}
.tb-footer-list a:hover {
    color: #00A854 !important;
    padding-left: 4px;
}

/* CTA col */
.tb-footer-cta-col {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.tb-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .65rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #00A854, #00C267);
    color: #fff !important;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0,168,84,0.3);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.tb-footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,168,84,0.4);
    color: #fff !important;
}
.tb-footer-settings {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.tb-footer-setting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    min-width: 34px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid var(--gray-200, #e5e7eb);
    background: transparent;
    color: var(--gray-600, #6b7280) !important;
    font-size: .8rem;
    cursor: pointer;
    transition: all .2s;
}
.tb-footer-setting-btn:hover {
    border-color: #00A854;
    color: #00A854 !important;
    background: rgba(0,168,84,0.05);
}
[data-theme-style="dark"] .tb-footer-setting-btn { border-color: rgba(255,255,255,0.1); }
.tb-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0,168,84,0.08);
    color: #00A854 !important;
    font-size: .85rem;
    transition: all .2s;
    text-decoration: none !important;
}
.tb-footer-social:hover {
    background: #00A854;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Bottom bar */
.tb-footer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200, #e5e7eb);
}
[data-theme-style="dark"] .tb-footer-bar { border-color: rgba(255,255,255,0.08); }
@media (min-width: 768px) {
    .tb-footer-bar { flex-direction: row; }
}
.tb-footer-copy {
    font-size: .8rem;
    color: var(--gray-500, #9ca3af);
}
.tb-footer-copy i { color: #00A854; }
.tb-footer-powered {
    font-size: .8rem;
    color: var(--gray-500, #9ca3af);
}
.tb-footer-powered strong { color: #00A854; }

/* Footer container override */
.footer {
    background: var(--white, #fff);
    border-top: 1px solid var(--gray-200, #e5e7eb);
    margin: 0;
    padding: 0;
}
[data-theme-style="dark"] .footer {
    background: #13131f;
    border-color: rgba(255,255,255,0.06);
}
[data-theme-style="dark"] .tb-footer-desc,
[data-theme-style="dark"] .tb-footer-addr,
[data-theme-style="dark"] .tb-footer-copy,
[data-theme-style="dark"] .tb-footer-powered { color: #9ca3af; }
[data-theme-style="dark"] .tb-footer-list a { color: #9ca3af !important; }
/* ===== END TEMANBIO FOOTER ===== */
/* ===== TEMANBIO AUTH PAGES ===== */

/* Reset old auth background */
.login-background, .register-background {
    background: none !important;
}

/* Split screen layout */
.tb-auth {
    display: flex;
    min-height: 100vh;
    width: 100%;
}
.tb-auth-body {
    background: #f8faf9;
}
[data-theme-style="dark"] .tb-auth-body { background: #0f0f17; }

/* Left brand panel */
.tb-auth-brand {
    display: none;
    flex: 0 0 45%;
    position: relative;
    background: linear-gradient(135deg, #00A854 0%, #00C267 40%, #008543 100%);
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 992px) {
    .tb-auth-brand { display: flex; }
}
.tb-auth-brand-content {
    position: relative;
    z-index: 2;
    padding: 3rem 3.5rem;
    color: #fff;
    max-width: 520px;
}
.tb-auth-brand-logo img {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 2.5rem;
}
.tb-auth-brand-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 2.5rem;
}
.tb-auth-brand-hero h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
}
.tb-auth-brand-hero p {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}
.tb-auth-brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.tb-auth-brand-features li {
    font-size: .9rem;
    color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    gap: 10px;
}
.tb-auth-brand-features li i {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}
.tb-auth-brand-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.tb-auth-brand-stat {
    display: flex;
    flex-direction: column;
}
.tb-auth-brand-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.tb-auth-brand-stat span {
    font-size: .8rem;
    color: rgba(255,255,255,0.7);
}
/* Decorative orbs */
.tb-auth-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}
.tb-auth-orb-1 {
    width: 300px; height: 300px;
    background: #fff;
    top: -100px; right: -50px;
}
.tb-auth-orb-2 {
    width: 250px; height: 250px;
    background: #00C267;
    bottom: -80px; left: -60px;
}

/* Right form panel */
.tb-auth-form-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    position: relative;
}
@media (min-width: 768px) {
    .tb-auth-form-panel { padding: 3rem; }
}
.tb-auth-mobile-logo {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
}
@media (min-width: 992px) {
    .tb-auth-mobile-logo { display: none; }
}
.tb-auth-mobile-logo a {
    text-decoration: none;
}
.tb-auth-form-wrap {
    width: 100%;
    max-width: 400px;
}

/* Header */
.tb-auth-header {
    margin-bottom: 2rem;
}
.tb-auth-header h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark, #1a1a2e);
    margin-bottom: .5rem;
    line-height: 1.3;
}
[data-theme-style="dark"] .tb-auth-header h1 { color: #fff; }
.tb-auth-header p {
    font-size: .9rem;
    color: var(--gray-500, #6b7280);
    margin: 0;
}
[data-theme-style="dark"] .tb-auth-header p { color: #9ca3af; }

/* Form */
.tb-auth-form {
    width: 100%;
}

/* Fields */
.tb-field {
    margin-bottom: 1.25rem;
}
.tb-field > label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
    margin-bottom: .5rem;
    display: block;
}
[data-theme-style="dark"] .tb-field > label { color: #d1d5db; }

/* Input with icon */
.tb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.tb-input-wrap > i {
    position: absolute;
    left: 14px;
    font-size: .9rem;
    color: var(--gray-400, #9ca3af);
    pointer-events: none;
    z-index: 2;
}
[data-theme-style="dark"] .tb-input-wrap > i { color: #6b7280; }
.tb-input-wrap .form-control {
    padding-left: 42px !important;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-200, #e5e7eb);
    background: var(--white, #fff);
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
}
[data-theme-style="dark"] .tb-input-wrap .form-control {
    background: #1a1a2e;
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}
.tb-input-wrap .form-control:focus {
    border-color: #00A854;
    box-shadow: 0 0 0 3px rgba(0,168,84,0.12);
    outline: none;
}
[data-theme-style="dark"] .tb-input-wrap .form-control:focus {
    box-shadow: 0 0 0 3px rgba(0,168,84,0.2);
}
.tb-input-wrap .form-control::placeholder {
    color: var(--gray-400, #9ca3af);
    font-size: .85rem;
}

/* Password toggle */
.tb-pw-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--gray-400, #9ca3af);
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    font-size: .9rem;
    transition: color .2s;
}
.tb-pw-toggle:hover { color: #00A854; }

/* Options row */
.tb-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .5rem;
}
.tb-link-sm {
    font-size: .8rem;
    color: #00A854 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: opacity .2s;
}
.tb-link-sm:hover { opacity: .7; }

/* Custom checkbox */
.tb-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}
.tb-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tb-checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300, #d1d5db);
    border-radius: 5px;
    flex-shrink: 0;
    position: relative;
    transition: all .2s;
}
[data-theme-style="dark"] .tb-checkbox-mark { border-color: #4b5563; }
.tb-checkbox input:checked ~ .tb-checkbox-mark {
    background: #00A854;
    border-color: #00A854;
}
.tb-checkbox input:checked ~ .tb-checkbox-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.tb-checkbox-label {
    font-size: .82rem;
    color: var(--gray-600, #6b7280);
    line-height: 1.4;
}
[data-theme-style="dark"] .tb-checkbox-label { color: #9ca3af; }
.tb-checkbox-label a {
    color: #00A854 !important;
    text-decoration: none !important;
    font-weight: 500;
}
.tb-checkbox-block {
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.tb-checkbox-block .tb-checkbox-mark { margin-top: 2px; }

/* Submit button */
.tb-auth-submit {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00A854, #00C267);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0,168,84,0.3);
    transition: transform .15s, box-shadow .2s;
    margin-bottom: 0;
}
.tb-auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,168,84,0.4);
}
.tb-auth-submit:active {
    transform: translateY(0);
}

/* Divider */
.tb-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
}
.tb-auth-divider::before,
.tb-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200, #e5e7eb);
}
[data-theme-style="dark"] .tb-auth-divider::before,
[data-theme-style="dark"] .tb-auth-divider::after { background: rgba(255,255,255,0.08); }
.tb-auth-divider span {
    font-size: .8rem;
    color: var(--gray-400, #9ca3af);
    white-space: nowrap;
}

/* Social buttons */
.tb-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.tb-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-200, #e5e7eb);
    background: var(--white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-600, #6b7280);
    text-decoration: none !important;
    transition: all .2s;
}
[data-theme-style="dark"] .tb-social-btn {
    background: #1a1a2e;
    border-color: rgba(255,255,255,0.1);
    color: #9ca3af;
}
.tb-social-btn:hover {
    border-color: #00A854;
    color: #00A854;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,168,84,0.1);
}

/* Footer link */
.tb-auth-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: .88rem;
    color: var(--gray-500, #6b7280);
}
[data-theme-style="dark"] .tb-auth-footer { color: #9ca3af; }
.tb-auth-footer a {
    color: #00A854 !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity .2s;
}
.tb-auth-footer a:hover { opacity: .7; }

/* Back to home */
.tb-auth-back {
    margin-top: 2rem;
    text-align: center;
}
.tb-auth-back a {
    font-size: .82rem;
    color: var(--gray-400, #9ca3af) !important;
    text-decoration: none !important;
    transition: color .2s;
}
.tb-auth-back a:hover { color: #00A854 !important; }

/* Alerts styling override for auth */
.tb-auth-form-wrap .alert {
    border-radius: 12px;
    border: none;
    font-size: .85rem;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
}

/* ===== END TEMANBIO AUTH PAGES ===== */

/* === LOGO RESPONSIVE === */
@media (max-width: 768px) {
    .navbar-logo {
        max-height: 2.5rem !important;
        height: 2.5rem !important;
    }
    .footer-logo {
        max-height: 3rem !important;
        height: 3rem !important;
    }
    .tb-footer-logo-img {
        height: 40px !important;
    }
    .tb-auth-brand-logo img {
        height: 48px !important;
    }
}
