/* AiPSoft ERP - website / login page branding. Loaded via web_include_css. */

/* Login, sign-up and forgot-password cards: frappe renders the same `app_logo` (the small "aip" mark)
   everywhere. On these public cards we want the full "aipsoft" logo instead, swapped in with CSS so no
   core template is touched. */
.page-card .page-card-head img.app-logo,
.for-login img.app-logo,
.for-signup img.app-logo,
.for-forgot img.app-logo {
	content: url("/assets/aipsoft_erp/images/aipsoft-logo.svg");
	height: 52px;
	width: auto;
	max-width: 260px;
	object-fit: contain;
}

/* Login footer: keep the "Powered by ERPNext" line small and quiet */
.web-footer .footer-powered,
.web-footer .footer-info,
footer .footer-powered {
	font-size: 11px;
	color: #8d99a6;
}
.web-footer .footer-powered a,
footer .footer-powered a {
	color: #8d99a6;
	text-decoration: none;
}
