/* ════════════════════════════════════════════════════════
   Accounts Layout Shell
   wwwroot/css/accounts-layout.css
   ════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: #f4f6f9;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.accounts-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ── */
.accounts-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 2rem;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accounts-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.accounts-logo-img {
    height: 120px;
    width: auto;
    display: block;
}

/* ── Main — fills remaining space and centers content ── */
.accounts-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: #f4f6f9;
}

/* ── Neutralise signup-wrap's own centering since accounts-main handles it ── */
.accounts-main .signup-wrap {
    min-height: unset;
    width: 100%;
    max-width: 560px;
    padding: 0;
    background: transparent;
    align-items: center;
    justify-content: flex-start;
}

/* ── Footer ── */
.accounts-footer {
    text-align: center;
    padding: 1rem;
    color: #9ca3af;
    font-size: 0.8rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    flex-shrink: 0;
}

.accounts-footer p { margin: 0; }

.accounts-footer a {
    color: #6b7280;
    text-decoration: none;
}

.accounts-footer a:hover { color: #2563eb; }
