:root { color-scheme: dark; font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: grid; place-items: center; padding: 24px; color: #f4f4f5; background: #09090b; }
.auth-card { width: min(440px, 100%); padding: 28px; border: 1px solid #27272a; border-radius: 16px; background: #18181b; box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.auth-card.wide { width: min(760px, 100%); }
.brand { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.brand img { width: 44px; height: 44px; border-radius: 10px; }
h1 { margin: 0; font-size: 22px; } h2 { margin: 24px 0 12px; font-size: 17px; }
p { color: #a1a1aa; line-height: 1.5; }
label { display: grid; gap: 6px; margin: 14px 0; color: #d4d4d8; font-size: 13px; }
input, select { width: 100%; height: 44px; padding: 0 12px; color: #fafafa; background: #09090b; border: 1px solid #3f3f46; border-radius: 8px; }
input:focus, select:focus { outline: 2px solid #a7f3d0; outline-offset: 1px; }
button, .button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 16px; border: 0; border-radius: 8px; color: #052e22; background: #a7f3d0; font-weight: 700; cursor: pointer; text-decoration: none; }
.secondary { color: #f4f4f5; background: #3f3f46; }
.danger { color: #fff; background: #7f1d1d; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.flash { margin: 10px 0; padding: 10px 12px; border-radius: 8px; background: #3f3f46; }
.flash.error { background: #7f1d1d; } .flash.success { background: #14532d; }
.invite { padding: 12px; overflow-wrap: anywhere; border: 1px solid #3f3f46; border-radius: 8px; background: #09090b; color: #d1fae5; }
table { width: 100%; border-collapse: collapse; } th, td { padding: 10px; border-bottom: 1px solid #27272a; text-align: left; font-size: 13px; }
.table-wrap { overflow-x: auto; } .inline-actions { display: flex; gap: 6px; } .inline-actions form { margin: 0; } .inline-actions button { min-height: 34px; padding: 0 10px; font-size: 12px; }
.muted { color: #a1a1aa; font-size: 12px; }
