/* wwwroot/css/site.css */

/* =========================
   Base
   ========================= */
html, body {
    height: 100%;
    margin: 0;
}

    /* =========================
   Public / Login pages
   ========================= */
    body.public-bg {
        min-height: 100vh;
        background: linear-gradient(135deg, #f2f4f7 0%, #dce3ea 100%);
    }


/* Centers login/verify content and leaves room for footer */
.public-page {
    min-height: calc(100vh - 64px); /* footer height */
    display: flex;
    align-items: center;
}

/* Auth card sizing */
.auth-shell {
    width: 100%;
    max-width: 440px;
}

.card.app-card {
    border: none;
    border-radius: 12px;
}

.brand-logo {
    max-height: 80px;
}

/* =========================
   Internal app pages
   ========================= */

/* Light, neutral background */
body.app-bg {
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Main content wrapper */
.app-content {
    min-height: calc(100vh - 64px);
}

/* =========================
   Footer (shared)
   ========================= */
footer {
    height: 64px;
    line-height: 64px;
    background: transparent;
}
