/* Cloutboost auth screens (login + password recovery) — brand design */
:root{
  --cb-grad: linear-gradient(90deg,#EC1E4E 0%,#B5219A 32%,#6E2CC4 58%,#3E63D8 80%,#45C7E8 100%);
  --cb-primary:#6C2BD0; --cb-ink:#1f2330; --cb-muted:#8a8f9c; --cb-line:#e9eaf1;
}
*{ box-sizing:border-box; }
body{
  font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  margin:0; min-height:100vh; display:flex; align-items:center; justify-content:center;
  color:var(--cb-ink);
  background:linear-gradient(135deg,#faf7ff 0%,#f4f5f9 55%,#eef7fb 100%);
  padding:24px;
}
.cb-login-card{
  width:100%; max-width:410px; background:#fff;
  border:1px solid var(--cb-line); border-radius:20px;
  box-shadow:0 18px 50px rgba(30,25,70,.10);
  padding:42px 38px 32px;
}
.cb-login-logo{ display:block; height:34px; width:auto; margin:0 auto 8px; }
.cb-login-card h1{ font-size:18px; font-weight:600; text-align:center; margin:18px 0 4px; }
.cb-login-sub{ text-align:center; color:var(--cb-muted); font-size:13px; margin-bottom:24px; }
.cb-login-card label{ font-size:12.5px; font-weight:500; color:#4b5160; margin:14px 0 6px; display:block; }
.cb-login-card .form-control{
  height:46px; border-radius:11px; border:1px solid #d9dbe6; font-size:14.5px; padding:0 14px;
}
.cb-login-card .form-control:focus{
  border-color:var(--cb-primary); box-shadow:0 0 0 .18rem rgba(108,43,208,.15);
}
.cb-btn-signin{
  width:100%; height:48px; margin-top:24px; border:0; border-radius:12px;
  background:var(--cb-grad); color:#fff; font-weight:600; font-size:15px; cursor:pointer;
  box-shadow:0 6px 18px rgba(108,43,208,.28); transition:filter .15s, box-shadow .15s;
}
.cb-btn-signin:hover{ filter:brightness(1.06); box-shadow:0 8px 22px rgba(108,43,208,.36); }
.cb-login-links{ display:flex; justify-content:center; gap:18px; margin-top:18px; }
.cb-login-links a{ color:var(--cb-primary); font-size:13px; font-weight:500; text-decoration:none; }
.cb-login-links a:hover{ text-decoration:underline; }
.cb-login-err{
  background:#fdecef; border:1px solid #f6c9d2; color:#c0264a;
  border-radius:10px; padding:10px 13px; font-size:13px; margin-bottom:6px; text-align:center;
}
.cb-auth-msg{
  background:#f3f0fb; border:1px solid #e2d9f7; color:#5b3aa6;
  border-radius:10px; padding:12px 14px; font-size:13.5px; margin-bottom:6px; text-align:center; line-height:1.45;
}
.cb-auth-msg a{ color:var(--cb-primary); font-weight:600; }
.cb-login-foot{ text-align:center; color:var(--cb-muted); font-size:12px; margin:26px 0 0; }
