
.client-body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#f5f9ff;
  color:#081225;
}
.client-layout{
  min-height:100vh;
  display:grid;
  grid-template-columns:280px 1fr;
}
.client-sidebar{
  background:#041936;
  color:white;
  padding:26px;
}
.client-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:34px;
}
.client-logo{
  width:46px;
  height:46px;
  border-radius:15px;
  background:linear-gradient(135deg,#063b86,#00bfd8);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:22px;
}
.client-brand small{
  display:block;
  color:#cbd5e1;
  margin-top:3px;
}
.client-menu a{
  display:block;
  color:#dbeafe;
  text-decoration:none;
  padding:13px 14px;
  border-radius:14px;
  margin:7px 0;
  font-weight:800;
}
.client-menu a.active,
.client-menu a:hover{
  background:rgba(255,255,255,.12);
  color:white;
}
.client-main{
  padding:34px;
}
.client-topbar{
  background:white;
  border:1px solid #dce9fb;
  border-radius:24px;
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 12px 35px rgba(8,18,37,.06);
  margin-bottom:28px;
}
.client-topbar h1{
  color:#063b86;
  margin:0;
}
.client-topbar p{
  color:#667085;
  margin:6px 0 0;
}
.client-badge{
  background:#eaf4ff;
  color:#063b86;
  border-radius:999px;
  padding:9px 13px;
  font-weight:900;
}
.client-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.client-card{
  background:white;
  border:1px solid #dce9fb;
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 35px rgba(8,18,37,.06);
}
.client-card h3{
  color:#063b86;
  margin-top:0;
}
.client-card p,.client-card li{
  color:#667085;
  line-height:1.7;
}
.client-card strong{
  color:#063b86;
}
.client-table{
  background:white;
  border:1px solid #dce9fb;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(8,18,37,.06);
}
.client-row{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
}
.client-row div{
  padding:18px;
  border-bottom:1px solid #e5edf8;
}
.client-row.head{
  background:#063b86;
  color:white;
  font-weight:900;
}
.client-btn{
  display:inline-block;
  text-decoration:none;
  background:#12a86b;
  color:white;
  padding:11px 15px;
  border-radius:12px;
  font-weight:900;
}
.client-btn.secondary{
  background:#063b86;
}
.client-form{
  background:white;
  border:1px solid #dce9fb;
  border-radius:26px;
  padding:28px;
  box-shadow:0 12px 35px rgba(8,18,37,.06);
  max-width:850px;
}
.client-form label{
  display:block;
  color:#063b86;
  font-weight:900;
  margin:14px 0 8px;
}
.client-form input,
.client-form select,
.client-form textarea{
  width:100%;
  border:1px solid #cdddf2;
  border-radius:14px;
  padding:14px;
}
.client-form textarea{
  min-height:130px;
}
.login-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:30px;
  background:radial-gradient(circle at 80% 20%,#00bfd8 0,#0b5ed7 34%,#062c68 70%,#041936 100%);
}
.login-card{
  width:min(470px,94vw);
  background:white;
  border-radius:30px;
  padding:34px;
  box-shadow:0 30px 90px rgba(0,0,0,.28);
}
.login-card h1{
  color:#063b86;
  margin-top:0;
}
.login-card p{
  color:#667085;
  line-height:1.7;
}
.login-card label{
  display:block;
  color:#063b86;
  font-weight:900;
  margin:14px 0 8px;
}
.login-card input{
  width:100%;
  border:1px solid #cdddf2;
  border-radius:14px;
  padding:14px;
}
.login-note{
  background:#f8fbff;
  border:1px dashed #b9d8ff;
  border-radius:18px;
  padding:14px;
  color:#667085;
  line-height:1.6;
  margin-top:16px;
}
@media(max-width:960px){
  .client-layout{grid-template-columns:1fr}
  .client-sidebar{position:static}
  .client-grid{grid-template-columns:1fr}
  .client-row{grid-template-columns:1fr}
  .client-row.head{display:none}
  .client-topbar{display:block}
}
