/* Techs Arena white-label: suppress residual Frappe footer signatures.
   Brand name, logo, favicon and "powered by" text are set via
   Website Settings / Navbar Settings by techsarena_branding.branding. */

.footer-powered,
.web-footer .powered-by,
a[href^="https://frappe.io"],
a[href^="https://frappeframework.com"] {
	display: none !important;
}

/* Enlarge the login-page logo — Frappe locks .app-logo to a 42x42 square,
   which squishes a wide logo. Let it grow with natural aspect ratio. */
.page-card-head .app-logo,
.page-card-head img.app-logo {
	width: auto !important;
	height: 72px !important;
	max-height: 72px !important;
	max-width: 280px !important;
	object-fit: contain;
	margin-bottom: 10px;
}

/* Developer credit — login footer (under the login card) */
.ta-dev-credit-login {
	text-align: center;
	margin-top: 18px;
	color: #8a8a8a;
	font-size: 12px;
}
.ta-dev-credit-login img {
	opacity: 0.9;
}

/* Developer credit — desk footer badge (bottom-right) */
.ta-dev-credit-desk {
	position: fixed;
	bottom: 10px;
	right: 14px;
	z-index: 1030;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--border-color, #eee);
	border-radius: 20px;
	padding: 3px 12px;
	font-size: 11px;
	color: #6b6b6b;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.ta-dev-credit-desk img {
	height: 14px;
}
:root[data-theme="dark"] .ta-dev-credit-desk {
	background: rgba(30, 30, 30, 0.9);
	color: #bbb;
	border-color: #333;
}
