/* Blue Oasis Customer Portal - safe customer facing design */
:root {
  --bo-navy:#0f172a;
  --bo-blue:#2563eb;
  --bo-blue2:#1d4ed8;
  --bo-soft:#eef6ff;
  --bo-line:#dbe5f3;
  --bo-text:#0f172a;
  --bo-muted:#64748b;
  --bo-card:rgba(255,255,255,.94);
  --bo-ok:#16a34a;
  --bo-warn:#d97706;
  --bo-danger:#dc2626;
  --bo-shadow:0 24px 70px rgba(15,23,42,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--bo-text);
  background:
    radial-gradient(circle at 15% 0%, rgba(37,99,235,.45), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(14,165,233,.28), transparent 28%),
    linear-gradient(145deg,#f8fbff 0%,#eef6ff 42%,#e8eef8 100%);
  min-height:100vh;
}
a{color:inherit}
.bo-page{min-height:100vh;padding:22px}
.bo-shell{width:min(1160px,100%);margin:0 auto}
.bo-login-shell{width:min(1050px,100%);margin:0 auto;display:grid;grid-template-columns:1fr 440px;gap:20px;align-items:stretch;min-height:calc(100vh - 44px)}
.bo-brand-panel{
  border-radius:34px;
  padding:34px;
  color:#fff;
  background:linear-gradient(145deg,rgba(37,99,235,.96),rgba(15,23,42,.94));
  box-shadow:var(--bo-shadow);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.bo-brand-panel:before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  top:-160px;
  left:-120px;
}
.bo-brand-content{position:relative;z-index:1}
.bo-logo{
  display:block;
  width:min(360px,100%);
  max-height:230px;
  object-fit:contain;
  filter:drop-shadow(0 16px 34px rgba(15,23,42,.25));
  margin-bottom:22px;
}
.bo-brand-panel h1{font-size:48px;line-height:.98;margin:0 0 14px;letter-spacing:-.045em}
.bo-brand-panel p{font-size:17px;line-height:1.7;color:#dbeafe;margin:0 0 24px}
.bo-premium-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:24px}
.bo-mini{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  min-height:94px;
}
.bo-mini b{display:block;margin-bottom:6px}
.bo-mini span{font-size:13px;color:#dbeafe;line-height:1.35}
.bo-card{
  background:var(--bo-card);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--bo-shadow);
  border-radius:34px;
  padding:28px;
  backdrop-filter:blur(18px);
}
.bo-login-card{display:flex;flex-direction:column;justify-content:center}
.bo-card h2{font-size:32px;margin:0 0 8px;letter-spacing:-.03em}
.bo-muted{color:var(--bo-muted);line-height:1.6;margin:0 0 18px}
.bo-field{margin:14px 0}
.bo-field label{display:block;font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.06em;color:#475569;margin-bottom:7px}
.bo-input,.bo-textarea{
  width:100%;
  border:1px solid #cbd5e1;
  background:#fff;
  color:#0f172a;
  border-radius:16px;
  font-size:16px;
  outline:none;
  transition:.15s;
}
.bo-input{height:52px;padding:0 15px}
.bo-textarea{min-height:110px;padding:13px 15px;resize:vertical;line-height:1.5}
.bo-input:focus,.bo-textarea:focus{border-color:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.12)}
.bo-password-wrap{position:relative}
.bo-password-wrap .bo-input{padding-right:106px}
.bo-show-btn{
  position:absolute;right:8px;top:8px;height:36px;border-radius:12px;border:1px solid #cbd5e1;
  background:#f8fafc;color:#0f172a;font-weight:900;cursor:pointer;padding:0 13px
}
.bo-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:48px;border:0;border-radius:16px;background:#0f172a;color:#fff;font-weight:900;
  font-size:15px;cursor:pointer;padding:0 18px;text-decoration:none;transition:.15s
}
.bo-btn:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(15,23,42,.18)}
.bo-btn:disabled{opacity:.6;cursor:not-allowed;transform:none;box-shadow:none}
.bo-btn.secondary{background:#e2e8f0;color:#0f172a}
.bo-btn.blue{background:#2563eb}
.bo-btn.safe{background:#16a34a}
.bo-msg{display:none;padding:12px;border-radius:14px;margin-top:12px;font-size:13px;font-weight:800}
.bo-msg.show{display:block}
.bo-msg.err{background:#fee2e2;color:#991b1b}
.bo-msg.ok{background:#dcfce7;color:#166534}
.bo-secure-note{font-size:12px;line-height:1.55;color:#64748b;background:#f8fafc;border:1px solid #e2e8f0;border-radius:16px;padding:12px;margin-top:16px}
.bo-topbar{
  position:sticky;top:0;z-index:20;margin:-22px -22px 20px;padding:14px 22px;
  background:rgba(248,251,255,.82);backdrop-filter:blur(16px);border-bottom:1px solid rgba(203,213,225,.75)
}
.bo-topbar-inner{width:min(1160px,100%);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:12px}
.bo-topbrand{display:flex;align-items:center;gap:12px;min-width:0}
.bo-topbrand img{width:108px;height:44px;object-fit:contain}
.bo-topbrand div{min-width:0}
.bo-topbrand b{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bo-topbrand span{display:block;color:#64748b;font-size:12px;margin-top:2px}
.bo-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.bo-hero{
  display:grid;grid-template-columns:1.2fr .8fr;gap:18px;margin-bottom:18px
}
.bo-hero-card{
  border-radius:30px;padding:26px;color:#fff;background:linear-gradient(145deg,#2563eb,#0f172a);
  box-shadow:var(--bo-shadow);overflow:hidden;position:relative
}
.bo-hero-card h1{font-size:36px;line-height:1.05;margin:0 0 10px;letter-spacing:-.04em}
.bo-hero-card p{margin:0;color:#dbeafe;line-height:1.6}
.bo-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.bo-stat{background:#fff;border:1px solid #e2e8f0;border-radius:24px;padding:18px;box-shadow:0 12px 32px rgba(15,23,42,.08)}
.bo-stat span{color:#64748b;font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.05em}
.bo-stat b{display:block;font-size:30px;margin-top:7px}
.bo-toolbar{display:flex;gap:10px;align-items:center;justify-content:space-between;flex-wrap:wrap;margin:18px 0}
.bo-search{flex:1;min-width:220px}
.bo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.bo-job-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:24px;padding:18px;box-shadow:0 14px 34px rgba(15,23,42,.08);
  display:flex;flex-direction:column;gap:12px
}
.bo-job-head{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.bo-job-title{font-size:18px;font-weight:900;line-height:1.25}
.bo-chip{display:inline-flex;align-items:center;border-radius:999px;padding:6px 10px;font-size:12px;font-weight:900;background:#e0f2fe;color:#075985;white-space:nowrap}
.bo-chip.green{background:#dcfce7;color:#166534}
.bo-chip.orange{background:#ffedd5;color:#9a3412}
.bo-chip.gray{background:#e2e8f0;color:#334155}
.bo-chip.red{background:#fee2e2;color:#991b1b}
.bo-meta{display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:13px;color:#475569}
.bo-meta div{background:#f8fafc;border:1px solid #e2e8f0;border-radius:14px;padding:10px}
.bo-meta span{display:block;color:#64748b;font-size:11px;text-transform:uppercase;font-weight:900;margin-bottom:3px}
.bo-progress{display:flex;gap:5px;align-items:center;margin-top:2px}
.bo-dot{height:8px;flex:1;border-radius:999px;background:#e2e8f0}
.bo-dot.on{background:#2563eb}
.bo-empty{text-align:center;background:#fff;border:1px dashed #cbd5e1;border-radius:24px;padding:34px;color:#64748b}
.bo-section{background:#fff;border:1px solid #e2e8f0;border-radius:28px;padding:22px;box-shadow:0 12px 32px rgba(15,23,42,.07);margin-bottom:16px}
.bo-section h2{font-size:22px;margin:0 0 14px}
.bo-detail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.bo-detail-item{background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:14px}
.bo-detail-item span{display:block;color:#64748b;font-size:11px;text-transform:uppercase;font-weight:900;letter-spacing:.05em;margin-bottom:5px}
.bo-detail-item b{display:block;font-size:15px;line-height:1.35}
.bo-timeline{display:grid;gap:10px}
.bo-step{display:flex;gap:12px;align-items:flex-start;background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:14px}
.bo-step-dot{width:24px;height:24px;border-radius:999px;background:#cbd5e1;flex:0 0 24px;box-shadow:inset 0 0 0 5px #fff}
.bo-step.done .bo-step-dot{background:#16a34a}
.bo-step.current .bo-step-dot{background:#2563eb}
.bo-step b{display:block;margin-bottom:3px}
.bo-step span{color:#64748b;font-size:13px;line-height:1.4}
.bo-note-list{display:grid;gap:10px}
.bo-note{background:#f8fafc;border:1px solid #e2e8f0;border-radius:16px;padding:13px}
.bo-note b{display:block;margin-bottom:4px}
.bo-note span{color:#64748b;font-size:12px}
.bo-proof-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.bo-proof{border:1px solid #e2e8f0;border-radius:16px;overflow:hidden;background:#f8fafc;min-height:120px;display:grid;place-items:center}
.bo-proof img{width:100%;height:150px;object-fit:cover;display:block}
.bo-safe-banner{background:#ecfeff;border:1px solid #bae6fd;color:#075985;border-radius:18px;padding:14px;line-height:1.5;margin-bottom:16px;font-weight:700}
.bo-loading{opacity:.65;pointer-events:none}
@media(max-width:920px){
  .bo-login-shell,.bo-hero{grid-template-columns:1fr}
  .bo-premium-row,.bo-grid{grid-template-columns:1fr}
  .bo-stats,.bo-detail-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .bo-page{padding:14px}
  .bo-login-shell{min-height:auto}
  .bo-brand-panel,.bo-card{border-radius:26px;padding:22px}
  .bo-brand-panel h1,.bo-hero-card h1{font-size:32px}
  .bo-topbar{margin:-14px -14px 14px;padding:12px 14px}
  .bo-topbar-inner{align-items:flex-start;flex-direction:column}
  .bo-actions{width:100%;justify-content:stretch}
  .bo-actions .bo-btn{flex:1}
  .bo-stats,.bo-detail-grid,.bo-meta,.bo-proof-grid{grid-template-columns:1fr}
  .bo-logo{max-height:180px}
}
