:root{
  --mwf-primary:#233b67;
  --mwf-accent:#d3b87e;
  --mwf-bg:#f6f7fa;
  --mwf-text:#1b2433;
  --mwf-muted:#697386;
  --mwf-border:#e2e7ef;
}

.mwf-standalone-body{
  margin:0;
  background:
    radial-gradient(circle at top left,rgba(211,184,126,.16),transparent 34%),
    linear-gradient(180deg,#f8f9fb 0%,#eef2f7 100%);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--mwf-text);
}
.mwf-standalone-shell{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 18px;
  box-sizing:border-box;
}

/* Verification result card */
.mwf-card{
  position:relative;
  overflow:hidden;
  width:min(100%,450px);
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(35,59,103,.12);
  border-radius:24px;
  box-shadow:0 22px 60px rgba(35,59,103,.15);
  padding:0 28px 28px;
  box-sizing:border-box;
  text-align:center;
}
.mwf-card-topline{
  height:7px;
  margin:0 -28px 22px;
  background:linear-gradient(90deg,var(--mwf-primary) 0 68%,var(--mwf-accent) 68% 100%);
}
.mwf-card-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.mwf-card-logo{
  display:block;
  width:min(100%,310px);
  height:auto;
  max-height:122px;
  object-fit:contain;
}
.mwf-card-brand-sub{
  display:inline-block;
  color:var(--mwf-primary);
  background:rgba(35,59,103,.07);
  border:1px solid rgba(35,59,103,.1);
  border-radius:999px;
  padding:7px 12px;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.mwf-verification-seal{
  position:absolute;
  top:22px;
  right:20px;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--mwf-primary);
  color:var(--mwf-accent);
  border:2px solid var(--mwf-accent);
  box-shadow:0 5px 14px rgba(35,59,103,.18);
  font-size:18px;
  font-weight:900;
}
.mwf-photo-wrap{margin:24px auto 14px}
.mwf-photo{
  width:132px;
  height:132px;
  object-fit:cover;
  border-radius:50%;
  border:5px solid #fff;
  outline:3px solid var(--mwf-accent);
  box-shadow:0 8px 24px rgba(35,59,103,.15);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}
.mwf-photo-placeholder{
  background:#f0f3f8;
  color:#7b8495;
  font-size:13px;
}
.mwf-name{
  color:var(--mwf-primary);
  font-size:26px;
  line-height:1.2;
  margin:10px 0 5px;
  font-weight:800;
}
.mwf-designation{
  color:#786643;
  font-size:15px;
  font-weight:650;
}
.mwf-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:9px 15px;
  font-size:12px;
  line-height:1;
  font-weight:850;
  letter-spacing:.06em;
  margin:18px 0;
}
.mwf-status-dot{width:8px;height:8px;border-radius:50%;background:currentColor}
.mwf-status.is-active{background:#eaf8ef;color:#14713b;border:1px solid #cbead6}
.mwf-status.is-inactive{background:#fff0ef;color:#b42318;border:1px solid #f3d0cd}
.mwf-details{
  overflow:hidden;
  margin-top:3px;
  border:1px solid var(--mwf-border);
  border-radius:15px;
  background:#fbfcfe;
}
.mwf-detail-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:15px 16px;
  text-align:left;
}
.mwf-detail-row+.mwf-detail-row{border-top:1px solid var(--mwf-border)}
.mwf-detail-row span{color:var(--mwf-muted);font-size:13px;font-weight:600}
.mwf-detail-row strong{color:var(--mwf-primary);font-size:14px;text-align:right}
.mwf-card-footer{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:8px;
  color:#737d8d;
  font-size:11.5px;
  line-height:1.5;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(211,184,126,.5);
}
.mwf-footer-check{
  flex:0 0 auto;
  width:18px;
  height:18px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--mwf-primary);
  color:var(--mwf-accent);
  font-size:11px;
  font-weight:900;
  margin-top:1px;
}

/* Manual Verify ID form */
.mwf-verify-wrap{
  width:100%;
  max-width:720px;
  margin:0 auto;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}
.mwf-verify-form{
  display:grid;
  gap:16px;
  background:#fff;
  border:1px solid rgba(35,59,103,.13);
  border-top:5px solid var(--mwf-primary);
  border-radius:20px;
  padding:24px;
  margin-bottom:28px;
  box-shadow:0 12px 36px rgba(35,59,103,.09);
  box-sizing:border-box;
}
.mwf-form-brand{
  display:grid;
  grid-template-columns:150px 1fr;
  align-items:center;
  gap:22px;
  padding-bottom:18px;
  margin-bottom:2px;
  border-bottom:1px solid var(--mwf-border);
}
.mwf-form-logo{display:block;width:150px;height:auto;max-height:78px;object-fit:contain}
.mwf-form-brand h2{
  color:var(--mwf-primary);
  margin:0 0 5px;
  font-size:22px;
  line-height:1.2;
}
.mwf-form-brand p{margin:0;color:var(--mwf-muted);font-size:13px;line-height:1.5}
.mwf-field{display:grid;gap:7px}
.mwf-field label{color:var(--mwf-primary);font-size:13px}
.mwf-field input{
  width:100%;
  box-sizing:border-box;
  border:1px solid #cdd5e1;
  border-radius:11px;
  padding:13px 14px;
  background:#fff;
  color:var(--mwf-text);
  font-size:16px;
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease;
}
.mwf-field input:focus{
  border-color:var(--mwf-accent);
  box-shadow:0 0 0 3px rgba(211,184,126,.22);
}
.mwf-verify-form>button{
  border:1px solid var(--mwf-primary);
  border-radius:11px;
  padding:13px 18px;
  font-weight:800;
  cursor:pointer;
  background:var(--mwf-primary);
  color:#fff;
  font-size:15px;
  transition:transform .15s ease,background .15s ease,color .15s ease;
}
.mwf-verify-form>button:hover{
  background:var(--mwf-accent);
  color:var(--mwf-primary);
  transform:translateY(-1px);
}
.mwf-form-note{
  text-align:center;
  color:#8790a0;
  font-size:11px;
  padding-top:2px;
}

/* Failed / invalid verification */
.mwf-not-found{
  width:min(100%,450px);
  margin:24px auto;
  background:#fff;
  border:1px solid #efd8d6;
  border-top:5px solid var(--mwf-primary);
  border-radius:20px;
  padding:30px;
  text-align:center;
  box-shadow:0 15px 40px rgba(35,59,103,.08);
  box-sizing:border-box;
}
.mwf-not-found .mwf-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  background:#fff0ef;
  color:#b42318;
  border:1px solid #f2d1ce;
  font-size:34px;
  line-height:1;
}
.mwf-not-found h3{margin:0 0 6px;color:var(--mwf-primary)}
.mwf-not-found p{margin:0;color:#6b7483}

@media(max-width:560px){
  .mwf-standalone-shell{padding:14px}
  .mwf-card{padding:0 18px 22px;border-radius:20px}
  .mwf-card-topline{margin:0 -18px 20px}
  .mwf-card-logo{width:min(100%,265px);max-height:108px}
  .mwf-verification-seal{top:18px;right:14px;width:30px;height:30px;font-size:16px}
  .mwf-name{font-size:23px}
  .mwf-detail-row{font-size:14px;padding:14px}
  .mwf-verify-form{padding:18px;border-radius:16px}
  .mwf-form-brand{grid-template-columns:1fr;text-align:center;gap:10px}
  .mwf-form-logo{width:190px;max-height:88px;margin:0 auto}
  .mwf-form-brand h2{font-size:20px}
}
