/*
 * Finllo — global stylesheet
 * This file was missing from the project. It centralizes the brand tokens
 * that were previously duplicated as inline <style> blocks inside
 * layouts/admin.blade.php and layouts/client.blade.php, and adds the
 * styling for the new admin/client login pages.
 */

:root {
    --gold: #fcba03;
    --gold-dark: #d99e00;
    --black: #050505;
    --ink: #101828;
    --muted: #667085;
    --border: #e5e7eb;
    --bg: #f5f6f8;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* { box-sizing: border-box; }

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

/* ---------- Buttons & utility ---------- */
.btn-finllo,
.auth-btn {
    background: var(--gold);
    border: none;
    color: #101010;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 18px;
    transition: transform .15s ease, background .15s ease;
}
.btn-finllo:hover,
.auth-btn:hover {
    background: var(--gold-dark);
    color: #101010;
    transform: translateY(-1px);
}

.text-gold { color: var(--gold) !important; }
.bg-gold { background: var(--gold) !important; }

/* ---------- Auth (login) pages ---------- */
.auth-body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
}
.auth-body-admin {
    background: radial-gradient(circle at top right, rgba(252,186,3,.08), transparent 35%), var(--black);
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}
.auth-shell-admin {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    align-content: center;
}

.auth-visual {
    background: radial-gradient(circle at top right, rgba(252,186,3,.14), transparent 40%), var(--black);
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.auth-visual-inner { max-width: 440px; }
.auth-logo { height: 46px; margin-bottom: 28px; }
.auth-visual h2 { font-size: 32px; font-weight: 900; margin-bottom: 14px; }
.auth-visual p { color: #b7b9be; font-size: 15px; margin-bottom: 26px; }
.auth-visual-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.auth-visual-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #d7d9de; }
.auth-visual-points i { color: var(--gold); font-size: 18px; }

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(16,24,40,.08);
    padding: 40px 34px;
}
.auth-card-admin {
    background: #0b0b0b;
    border: 1px solid #1e1e1e;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.auth-title { font-size: 24px; font-weight: 900; margin-bottom: 4px; color: var(--ink); }
.auth-subtitle { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.auth-subtitle-admin { color: #8b8d92; }

.auth-input {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 11px 14px;
    font-size: 14px;
}
.auth-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(252,186,3,.25);
}
.auth-input-admin {
    background: #141414;
    border-color: #262626;
    color: #fff;
}
.auth-input-admin::placeholder { color: #666; }

.auth-label-admin { color: #b7b9be; }
.auth-link { color: var(--gold-dark); text-decoration: none; font-weight: 600; }
.auth-link:hover { text-decoration: underline; }
.auth-link-admin { color: #8b8d92; text-decoration: none; }
.auth-link-admin:hover { color: var(--gold); }

.auth-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(252,186,3,.12);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

@media (max-width: 991px) {
    .auth-shell { grid-template-columns: 1fr; }
}

/* ---------- Dashboard hero / stat widgets (client dashboard) ---------- */
.finllo-hero {
    background: radial-gradient(circle at top right, rgba(252,186,3,.16), transparent 45%), var(--black);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.finllo-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
}
.finllo-stat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 20px;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}
.finllo-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16,24,40,.08);
}
.finllo-stat-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(252,186,3,.12);
    color: var(--gold-dark);
    font-size: 19px;
    margin-bottom: 12px;
}
