/* /sign-in.php — customer sign-in, sitewide chrome. Self-contained so the
   aggressive bare-tag rules in css/layout.css don't fight the form. */

/* This page does NOT load the page CSS that turns #box1 into a full-height
   hero band, so #box1 collapses to a single line and #box2 rides up under the
   position:fixed announcement banner + header (which reserve no space in flow).
   Rebuild #box1 as a compact heading band that clears the fixed chrome.
   Header is 89px (desktop) / ~54px (<=1012px slicknav); the banner adds
   50 / 30px and toggles body.banner-visible when shown. */
#box1 {
	background: #123258;
	text-align: center;
	padding: 113px 20px 30px;          /* 89 header + 24 breathing room */
}
body.banner-visible #box1 { padding-top: 163px; }   /* + 50px banner */

#box1 #box1content h1 {
	margin: 0;
	color: #fff;
	font-family: "Oswald", Arial, sans-serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

#box1 #b1downarrow { display: none; }   /* no full-height hero to scroll past */

@media screen and (max-width: 1012px) {
	#box1 { padding-top: 78px; }                     /* ~54 slicknav + 24 */
	body.banner-visible #box1 { padding-top: 108px; } /* + 30px banner */
}

#box2 .si-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: flex-start;
	max-width: 900px;
	margin: 40px auto 10px;
}

/* /sign-up — one card, centered, narrower */
#box2 .si-wrap--single {
	max-width: 460px;
}
#box2 .si-wrap--single .si-card { flex-basis: 100%; }

#box2 .si-card {
	flex: 1 1 340px;
	background: #fff;
	border: 1px solid #e2e6ea;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	padding: 30px 28px 32px;
}
#box2 .si-card-alt { background: #f6f8fa; }

#box2 .si-card h2 {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 24px;
	line-height: 1.2;
	color: #123258;
	margin: 0 0 8px;
}
#box2 .si-lead {
	font-size: 15px;
	line-height: 1.55;
	color: #5b6472;
	margin: 0 0 20px;
}
#box2 .si-lead strong { color: #123258; }
#box2 .si-lead a { color: #2772a5; }

#box2 .si-form label {
	display: block;
	font-family: "Oswald", Arial, sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #1a1f2b;
	margin: 0 0 6px;
}
#box2 .si-form .si-hint {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	color: #8a929e;
}
#box2 .si-form input[type="text"],
#box2 .si-form input[type="tel"],
#box2 .si-form input[type="email"],
#box2 .si-form input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #c9ced6;
	border-radius: 6px;
	padding: 12px 13px;
	font-size: 16px;
	line-height: normal;
	font-family: "Lato", Arial, sans-serif;
	color: #1a1f2b;
	background: #fff;
	margin: 0 0 16px;
}
#box2 .si-form input:focus {
	outline: 2px solid #1b3a63;
	outline-offset: 1px;
	border-color: #1b3a63;
}

#box2 .si-btn {
	display: inline-block;
	border: 0;
	cursor: pointer;
	background: #d9272e;
	color: #fff !important;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	padding: 13px 26px;
	border-radius: 3px;
	transition: background-color 0.15s ease;
	text-decoration: none;
}
#box2 .si-btn:hover { background: #dd3d43; }
#box2 .si-btn-alt { background: #2772a5; }
#box2 .si-btn-alt:hover { background: #3183ba; }

#box2 .si-error {
	background: #fdecec;
	border: 1px solid #f3b5b5;
	color: #9a1b1b;
	font-size: 14px;
	line-height: 1.4;
	padding: 10px 13px;
	border-radius: 6px;
	margin: 0 0 16px;
}

#box2 .si-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px; overflow: hidden;
}

#box2 .si-newacct {
	max-width: 900px;
	margin: 22px auto 0;
	padding-top: 18px;
	border-top: 1px solid #e2e6ea;
	font-size: 15px;
	color: #5b6472;
	text-align: center;
}
#box2 .si-newacct a { color: #2772a5; font-weight: 700; }

#box2 .si-foot {
	max-width: 900px;
	margin: 6px auto 40px;
	font-size: 14px;
	color: #5b6472;
	text-align: center;
}
#box2 .si-foot a { color: #d9272e; }

@media screen and (max-width: 760px) {
	#box2 .si-wrap { margin-top: 28px; gap: 20px; }
	#box2 .si-card { padding: 24px 20px 26px; }
}
