/* =========================================
SIGNATURE BRANDS ACCOUNT PAGES
========================================= */

:root {
--bg: #f4f1ea;
--panel: #ffffff;
--ink: #111111;
--muted: #777777;
--line: rgba(17,17,17,.12);
--accent: #111111;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background: var(--bg);
color: var(--ink);
font-family: Arial, Helvetica, sans-serif;
min-height: 100vh;
}

.account-shell {
width: min(1400px, calc(100% - 4rem));
display: grid;
grid-template-columns: 1fr 420px;
background: var(--panel);
border: 1px solid var(--line);
min-height: 760px;
}

.account-panel {
padding: clamp(2.5rem, 5vw, 5rem);
display: flex;
flex-direction: column;
justify-content: center;
}

.account-title {
font-size: clamp(2.6rem, 5vw, 4.4rem);
line-height: .88;
font-weight: 900;
letter-spacing: -.07em;
margin-bottom: 1rem;
text-transform: uppercase;
}

.account-subtitle {
max-width: 340px;
color: var(--muted);
margin-bottom: 2rem;
line-height: 1.45;
}

input {
width: 100%;
height: 56px;
padding: 0 1rem;
border: 1px solid var(--line);
background: #fff;
font-size: .95rem;
color: var(--ink);
}

button {
width: 100%;
height: 56px;
border: none;
background: #111;
color: #fff;
font-size: .72rem;
letter-spacing: .16em;
text-transform: uppercase;
cursor: pointer;
transition: .25s;
white-space: nowrap;
}

.account-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}

.account-brand {
padding: clamp(2rem, 5vw, 5rem);
display: flex;
flex-direction: column;
justify-content: space-between;
border-right: 1px solid var(--line);
}

.brand-kicker {
font-size: .72rem;
letter-spacing: .22em;
text-transform: uppercase;
color: var(--muted);
}

.brand-logo {
font-size: clamp(4rem, 9vw, 8rem);
line-height: .85;
letter-spacing: -.08em;
text-transform: uppercase;
font-weight: 900;
}

.brand-copy {
max-width: 420px;
line-height: 1.7;
color: var(--muted);
}

.account-panel {
padding: clamp(2rem, 5vw, 4rem);
display: flex;
flex-direction: column;
justify-content: center;
}

.account-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 900;
letter-spacing: -.05em;
margin-bottom: .5rem;
text-transform: uppercase;
}

.form-group {
margin-bottom: 1rem;
}

input:focus {
outline: none;
border-color: #111;
}

button:hover {
opacity: .88;
}

.account-links {
display: flex;
justify-content: space-between;
margin-top: 1.5rem;
font-size: .8rem;
}

.account-links a {
color: var(--muted);
}

.account-links a:hover {
color: var(--ink);
}

.account-footer {
margin-top: 2rem;
font-size: .85rem;
color: var(--muted);
}

.account-footer a {
color: var(--ink);
font-weight: 600;
}

.account-wrapper {
width: min(1400px, calc(100% - 4rem));
}

.account-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
padding: 0 .25rem;
}

.account-header a {
text-decoration: none;
color: #111;
}

.account-header a:first-child {
font-size: .75rem;
letter-spacing: .16em;
text-transform: uppercase;
opacity: .7;
}

.account-brand-link {
font-size: .75rem;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
}

@media (max-width: 900px) {

.account-shell {
grid-template-columns: 1fr;
}

.account-brand {
display: none;
}

}