/* ─────────────────────────────────────────────────────────
   SIGN-IN PAGE CARD
   Isolated from the global .au-card system so WIP card
   changes cannot bleed into the login screen.
───────────────────────────────────────────────────────── */

.signin-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding-top: 48px;
	background: linear-gradient(180deg, #faf9f5 0%, #e8f0e8 100%);
}

.signin-card {
	background: none;
	border: none;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.signin-card__inner {
	background: #ffffff;
	border: 1px solid #e0ddd6;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	padding: 32px 28px;
	width: 100%;
	max-width: 350px;
	min-width: 300px;
}

.signin-card .logo {
	display: block;
	margin: 0 auto 20px;
}

.signin-contact-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2d2d2d;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.02em;
}
