/* ── NOTIFICATION + STATUS BADGES (used across app) ─── */
.notif-bell:hover{background:rgba(255,255,255,.18)}
.notif-badge{background:var(--accent);color:white;font-size:10px;font-weight:700;min-width:18px;height:18px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;padding:0 4px}
.notif-list{max-height:360px;overflow-y:auto}
.notif-item{padding:12px 1.5rem;border-bottom:1px solid var(--border);display:flex;gap:10px;align-items:flex-start}
.notif-item.unread{background:#fef9f0}
.notif-icon{font-size:16px;flex-shrink:0;margin-top:1px}
.notif-msg{font-size:13px;color:var(--ink);line-height:1.4;flex:1}
.notif-time{font-size:11px;color:var(--muted);white-space:nowrap}
.status-badge{display:inline-block;font-size:10px;font-weight:600;padding:2px 8px;border-radius:999px;cursor:pointer;border:none;font-family:'DM Sans',sans-serif}
.status-new{background:#E6F1FB;color:#0C447C}
.status-reviewing{background:#FEF3E2;color:#854F0B}
.status-planned{background:#EAF3DE;color:#27500A}
.status-done{background:#D1FAE5;color:#065F46}
.status-declined{background:#FEE2E2;color:#991B1B}
.req-item{padding:14px 1.5rem;border-bottom:1px solid var(--border);display:grid;grid-template-columns:1fr auto;gap:12px;align-items:start}
.req-item:hover{background:var(--warm)}
.req-item:last-child{border-bottom:none}
.req-title{font-size:13px;font-weight:600;margin-bottom:3px}
.req-meta{font-size:11px;color:var(--muted)}
.req-desc{font-size:12px;color:var(--muted);margin-top:4px;line-height:1.5}

/* ── AUTH SCREEN — SPLIT LAYOUT ─── */
.auth-wrap{min-height:100vh;display:flex}

/* LEFT BRANDING PANEL */
.auth-left{
  width:42%;
  background:var(--ink);
  padding:3rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  flex-shrink:0;
}
.auth-left::before{
  content:'';position:absolute;
  bottom:-140px;left:-100px;
  width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,75,49,.14) 0%,transparent 65%);
  pointer-events:none;
}
.auth-left::after{
  content:'';position:absolute;
  top:-80px;right:-80px;
  width:320px;height:320px;border-radius:50%;
  background:radial-gradient(circle,rgba(232,149,109,.08) 0%,transparent 65%);
  pointer-events:none;
}
.auth-brand{display:flex;align-items:center;gap:10px;text-decoration:none;position:relative;z-index:1}
.auth-logo-mark{width:36px;height:36px;background:var(--accent);border-radius:8px;display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-weight:900;color:white;font-size:18px}
.auth-logo-text{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:white}
.auth-logo-text span{color:var(--accent2)}
.auth-pitch{flex:1;display:flex;flex-direction:column;justify-content:center;padding:2rem 0;position:relative;z-index:1}
.auth-pitch-title{font-family:'Playfair Display',serif;font-size:2.4rem;font-weight:900;color:white;line-height:1.2;margin-bottom:1.25rem}
.auth-pitch-sub{font-size:15px;color:rgba(255,255,255,.48);line-height:1.75;max-width:340px}
.auth-left-links{display:flex;gap:1.5rem;position:relative;z-index:1}
.auth-left-links a{font-size:12px;color:rgba(255,255,255,.38);text-decoration:none;transition:color .2s}
.auth-left-links a:hover{color:rgba(255,255,255,.8)}

/* RIGHT FORM PANEL */
.auth-right{flex:1;background:var(--cream);display:flex;align-items:center;justify-content:center;padding:3rem 2rem}
.auth-box{background:white;border-radius:20px;padding:2.5rem;width:100%;max-width:420px;box-shadow:0 4px 40px rgba(26,26,46,.07)}

/* Mobile logo (shown only on small screens) */
.auth-mobile-logo{display:none;align-items:center;gap:10px;margin-bottom:2rem}

/* FORM ELEMENTS */
.auth-title{font-family:'Playfair Display',serif;font-size:1.75rem;font-weight:700;margin-bottom:.4rem;color:var(--ink)}
.auth-sub{color:var(--muted);font-size:14px;margin-bottom:1.75rem;line-height:1.5}
.field{margin-bottom:1rem}
.field label{display:block;font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:5px}
.field2{margin-bottom:1rem}
.field2 label{display:block;font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:5px}
.field input,.field2 input,.field2 textarea{width:100%;padding:11px 14px;border:1px solid var(--border);border-radius:9px;font-size:14px;color:var(--ink);background:var(--cream);outline:none;transition:border-color .2s,box-shadow .2s;font-family:'DM Sans',sans-serif}
.field2 textarea{width:100%;padding:11px 14px;border:1px solid var(--border);border-radius:9px;font-size:14px;color:var(--ink);background:var(--cream);outline:none;transition:border-color .2s;resize:vertical;font-family:'DM Sans',sans-serif;min-height:100px}
.field input:focus,.field2 input:focus,.field2 textarea:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(200,75,49,.1)}
.auth-btn{width:100%;padding:13px;background:var(--ink);color:white;border:none;border-radius:9px;font-size:15px;font-weight:600;cursor:pointer;transition:background .2s;margin-top:.5rem;font-family:'DM Sans',sans-serif}
.auth-btn:hover{background:var(--accent)}
.auth-switch{text-align:center;margin-top:1.25rem;font-size:13px;color:var(--muted)}
.auth-switch a{color:var(--accent);font-weight:500;cursor:pointer}
.auth-error{background:#fef2f2;color:#b91c1c;padding:10px 14px;border-radius:8px;font-size:13px;margin-bottom:1rem;display:none}

/* RESPONSIVE */
@media(max-width:768px){
  .auth-left{display:none}
  .auth-right{width:100%;min-height:100vh;padding:2rem 1.5rem}
  .auth-mobile-logo{display:flex}
}
