.auth-page {
	min-height: 100vh;
	background: var(--color-cold-gray);
}

.auth-shell {
	display: grid;
	grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
	min-height: 100vh;
}

.auth-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px;
	background: var(--color-night);
	text-align: center;
}

.auth-brand img { width: 112px; height: 112px; margin-bottom: 28px; }
.brand-name { margin: 0; color: var(--color-white); font: 700 clamp(2.4rem, 5vw, 4.4rem)/1 var(--font-brand); }
.brand-tagline { margin: 18px 0 0; color: #c5ceda; font-size: 1.05rem; }

.auth-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(100%, 540px);
	margin: 0 auto;
	padding: 56px clamp(28px, 7vw, 96px);
}

.eyebrow { margin: 0 0 12px; color: var(--color-green); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0; color: var(--color-night); font: 700 clamp(2rem, 4vw, 3rem)/1.08 var(--font-brand); }
.auth-intro { margin: 14px 0 34px; color: var(--color-text-muted); }
.login-form { display: flex; flex-direction: column; gap: 10px; }
label, .password-label { color: var(--color-night); font-size: .88rem; font-weight: 600; }
.password-label { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
a { color: var(--color-green); font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; }
input[type='text'], input[type='email'], input[type='password'] { width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid #cbd1d8; border-radius: 8px; color: var(--color-night); background: var(--color-white); outline: none; transition: border-color .2s, box-shadow .2s; }
input[type='text']:focus, input[type='email']:focus, input[type='password']:focus { border-color: var(--color-green); box-shadow: 0 0 0 3px rgba(31, 122, 67, .14); }
.remember-option { display: flex; align-items: center; gap: 9px; margin: 8px 0 14px; color: var(--color-text-muted); font-weight: 400; }
.remember-option input { width: 16px; height: 16px; accent-color: var(--color-green); }
button { display: flex; justify-content: space-between; align-items: center; padding: 15px 18px; border: 0; border-radius: 8px; color: var(--color-night); background: var(--color-gold); cursor: pointer; font-weight: 700; transition: transform .2s, filter .2s; }
button:hover { filter: brightness(.96); transform: translateY(-1px); }
button span { font-size: 1.3rem; }
.form-error { margin: 0 0 18px; padding: 12px 14px; border: 1px solid #e7b8b3; border-radius: 6px; color: var(--color-brick); background: #fbeceb; font-size: .88rem; }
.auth-footer { margin: 26px 0 0; color: var(--color-text-muted); font-size: .88rem; text-align: center; }

@media (max-width: 720px) {
	.auth-shell { grid-template-columns: 1fr; }
	.auth-brand { min-height: 280px; padding: 36px 24px; }
	.auth-brand img { width: 84px; height: 84px; margin-bottom: 18px; }
	.brand-name { font-size: 2.6rem; }
	.auth-panel { padding: 42px 24px 52px; }
}
