/* ConformaLab — estilos de overlay de login y logout */
.cl-overlay{
  position:fixed; inset:0; background:rgba(15,23,42,.55); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; z-index:1000;
  font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  overflow-y:auto; padding:16px;
}
.cl-login{
  background:#fff; width:100%; max-width:440px; border-radius:14px;
  box-shadow:0 20px 60px rgba(15,23,42,.25); padding:28px 32px; margin:auto;
}
.cl-login h1{color:#1e3a8a; font-size:22px; font-weight:800; letter-spacing:-.01em; margin-bottom:4px}
.cl-login .sub{font-size:12px; color:#64748b; text-transform:uppercase; letter-spacing:.04em; margin-bottom:18px}

/* Tabs */
.cl-tabs{
  display:flex; gap:0; border-bottom:1px solid #e2e8f0; margin-bottom:0;
}
.cl-tab{
  flex:1; background:transparent; border:none; padding:9px 6px;
  font-size:12.5px; font-weight:600; color:#64748b; cursor:pointer;
  border-bottom:2px solid transparent; transition:color .12s, border-color .12s;
  font-family:inherit;
}
.cl-tab:hover{color:#1e3a8a}
.cl-tab.active{color:#1e3a8a; border-bottom-color:#1e3a8a}
.cl-tabpane.hidden{display:none!important}
.cl-alert{margin-top:10px; padding:10px 12px; border-radius:8px; font-size:13px}

/* Campos dentro de los tabs */
.cl-login .field{margin-bottom:12px}
.cl-login .field label{display:block; font-size:12px; font-weight:600; color:#334155; margin-bottom:5px}
.cl-login .inp{
  width:100%; padding:9px 12px; border:1px solid #cbd5e1; border-radius:8px;
  font-size:14px; transition:border-color .12s, box-shadow .12s; box-sizing:border-box;
  font-family:inherit;
}
.cl-login .inp:focus{outline:none; border-color:#1e3a8a; box-shadow:0 0 0 3px rgba(30,58,138,.12)}

.cl-login .btn-prim{
  width:100%; margin-top:12px; background:#1e3a8a; color:#fff; border:0;
  padding:12px; border-radius:8px; font-weight:600; font-size:14px; cursor:pointer;
  transition:background .12s; font-family:inherit;
}
.cl-login .btn-prim:hover{background:#1d4ed8}
.cl-login .btn-prim:disabled{background:#94a3b8; cursor:not-allowed}
.cl-login .footnote{margin-top:14px; font-size:12px; color:#64748b; line-height:1.5}
.cl-login .footnote a{color:#1e3a8a; text-decoration:underline}
.cl-login .demo-btn{
  margin-top:14px; width:100%; background:transparent; color:#1e3a8a;
  border:1px dashed #cbd5e1; padding:10px; border-radius:8px; font-size:12px; cursor:pointer;
  font-family:inherit;
}
.cl-login .demo-btn:hover{background:#eff4ff}
.cl-logout{
  background:transparent; border:0; color:#64748b; cursor:pointer; font-size:12px;
  padding:4px 8px; border-radius:6px; margin-left:8px; font-family:inherit;
}
.cl-logout:hover{background:#f1f5f9; color:#b91c1c}
