body{
  margin:0;
  font-family:"Segoe UI",Arial,sans-serif;
  background:#f5f8fc;
}

.login-container{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  box-sizing:border-box;
}

.login-card{
  width:100%;
  max-width:460px;
  background:white;
  border-radius:20px;
  padding:40px;
  box-sizing:border-box;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  border:1px solid #e2e8f0;
}

.logo-area{
  text-align:center;
  margin-bottom:30px;
}

.logo-area cci-brand-logo{
  margin-left:auto;
  margin-right:auto;
}

.logo-area h1{
  margin:0 0 10px;
  color:#0f172a;
  font-size:30px;
  font-weight:800;
}

.logo-area p{
  margin:0;
  color:#64748b;
  font-size:15px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:700;
  color:#0f172a;
}

.form-group input{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #cbd5e1;
  box-sizing:border-box;
  font-size:15px;
}

.form-group input:focus{
  outline:none;
  border-color:#2563eb;
}

.login-btn{
  width:100%;
  padding:14px;
  background:#2563eb;
  color:white;
  border:none;
  border-radius:10px;
  cursor:pointer;
  font-size:16px;
  font-weight:700;
}

.login-btn:hover{
  background:#1d4ed8;
}

#message{
  margin-top:18px;
  text-align:center;
  color:#dc2626;
  font-weight:600;
}

.portal-badge{
  display:inline-block;
  margin-top:14px;
  padding:8px 14px;
  background:#dbeafe;
  color:#1d4ed8;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}
.forgot-password-link{display:block;margin-top:16px;text-align:center;color:#2563eb;font-weight:700;text-decoration:none}
