:root { --green:#88ab3c; --green-d:#74933a; --ink:#3f4a2e; --muted:#6f7a5c; }
* { box-sizing:border-box; }
body { margin:0; font-family:'Poppins', Arial, sans-serif; color:#41442e; background:#eef2e6; line-height:1.7; }
a { color:var(--green-d); }

/* Topbar (Verfahrensseite) */
.p-topbar { background:#fff; border-bottom:1px solid #e3e7da; padding:14px 22px; display:flex; align-items:center; justify-content:space-between; }
.p-topbar img { height:38px; width:auto; }
.p-logout { font-size:14px; color:var(--muted); text-decoration:none; }
.p-logout:hover { color:var(--green-d); }

/* Inhalt */
.p-wrap { max-width:820px; margin:0 auto; padding:44px 22px 80px; }
.p-wrap h1 { font-size:28px; font-weight:600; color:var(--ink); margin:0 0 8px; }
.p-wrap h2 { font-size:21px; font-weight:600; color:var(--green); margin:40px 0 10px; }
.p-wrap p { color:#4a4f3d; margin:0 0 14px; }
.p-note { background:#fff; border:1px solid #e3e7da; border-left:4px solid var(--green); border-radius:0 12px 12px 0; padding:16px 20px; color:#5a6047; font-size:15px; margin:0 0 30px; }

/* Login */
.p-login { min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:40px 20px; }
.p-card { background:#fff; border:1px solid #e6e8e0; border-radius:20px; max-width:470px; width:100%; padding:46px 40px; text-align:center; box-shadow:0 12px 40px rgba(0,0,0,.06); }
.p-card img { width:88px; height:auto; margin-bottom:18px; }
.p-card h1 { font-size:22px; font-weight:600; color:var(--ink); margin:0 0 8px; }
.p-sub { color:var(--muted); font-size:14.5px; margin:0 0 26px; }
.p-field { text-align:left; margin-bottom:16px; }
.p-field label { display:block; font-size:13px; font-weight:600; color:#5f6b52; margin-bottom:6px; }
.p-field input { width:100%; border:1px solid #d5d9cc; border-radius:10px; padding:13px 15px; font-size:15px; background:#fbfcf9; }
.p-field input:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(136,171,60,.15); background:#fff; }
.p-btn { width:100%; border:none; border-radius:10px; padding:14px 20px; background:var(--green); color:#fff; font-size:16px; font-weight:600; cursor:pointer; transition:background .15s; }
.p-btn:hover { background:var(--green-d); }
.p-error { background:#fdecec; border:1px solid #f3c2c2; color:#a23b3b; border-radius:10px; padding:11px 14px; font-size:14px; margin-bottom:18px; text-align:left; }
.p-foot { margin-top:24px; font-size:13px; color:#9aa585; }
.p-foot a { color:#7a8466; text-decoration:none; }
.p-foot a:hover { text-decoration:underline; }
