/* Company branding for the /login page.
   Warm orange-red accents only — the card keeps Frappe's neutral surface. */

body {
	background-color: #fffaf6;
}

.page-card {
	position: relative;
	overflow: hidden;
}

.page-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff7a45, #e4572e);
}

.page-card-head {
	align-items: center;
	text-align: center;
}

.page-card-head img.app-logo {
	max-height: 120px;
	width: auto;
}

.page-card-head h4 {
	font-size: var(--text-5xl, 28px);
	line-height: 1.2;
	color: #c2410c;
}

[data-theme="dark"] .page-card {
	background-color: var(--bg-color);
}

[data-theme="dark"] .page-card-head h4 {
	color: #f97316;
}