/* =========================================================
   ECAPLUS DOCTOR AUTH / REGISTER
   Login = floating card
   Register = larger form card for long onboarding
   ========================================================= */

:root{
  --doctor-primary:#00b7c2;
  --doctor-primary-dark:#0f5f66;
  --doctor-accent:#19d38a;
  --doctor-ink:#103b3a;
  --doctor-muted:#6b7a86;
  --doctor-bg:#f4fbfa;
  --doctor-surface:#ffffff;
  --doctor-surface-soft:rgba(255,255,255,.92);
  --doctor-border:#dceeed;
  --doctor-border-soft:#e7f3f2;
  --doctor-shadow:0 24px 60px rgba(16,59,58,.10);
  --doctor-shadow-lg:0 40px 90px rgba(16,59,58,.12);
  --doctor-shadow-sm:0 12px 28px rgba(16,59,58,.08);
  --doctor-radius-xl:32px;
  --doctor-radius-lg:24px;
  --doctor-radius-md:18px;
  --doctor-radius-sm:14px;
  --doctor-gradient:linear-gradient(135deg,#0f5f66 0%,#00a9b6 48%,#19d38a 100%);
}




html, body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
}

body.doctor-access{
  min-height:100vh;
  font-family:"Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--doctor-ink);
  background:
    radial-gradient(circle at top left, rgba(37,208,194,.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(25,211,138,.10), transparent 20%),
    var(--doctor-bg);
}

body.doctor-access *{
  box-sizing:border-box;
}

body.doctor-access .screen-darken{
  display:none !important;
}

.is-hidden {
    display: none !important;
  }


/* =========================
   PAGE LAYOUT
   ========================= */
body.doctor-access .doctor-access-page{
  min-height:100vh;
  width:100%;
  padding:0;
  display:block;
}

body.doctor-access .doctor-access-shell{
  width:100vw;
  min-height:100vh;
  display:grid;
  gap:0;
  align-items:stretch;
}

body.doctor-access .doctor-login-pane,
body.doctor-access .doctor-info-pane{
  min-width:0;
  min-height:100vh;
}

/* Login layout */
body.doctor-access:not(.doctor-access-register) .doctor-access-shell{
  grid-template-columns: .92fr 1.08fr;
}

/* Register layout */
body.doctor-access-register .doctor-access-shell{
  grid-template-columns: 1.06fr .94fr;
}

/* =========================
   LEFT / FORM ZONE
   ========================= */
body.doctor-access .doctor-login-pane{
  background:transparent;
}

/* LOGIN: floating card */
body.doctor-access:not(.doctor-access-register) .doctor-login-pane{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:56px;
}

body.doctor-access:not(.doctor-access-register) .doctor-login-wrap{
 
  background:var(--doctor-surface-soft);
  border:1px solid rgba(255,255,255,.8);
  border-radius:28px;
  box-shadow:var(--doctor-shadow-lg);
  backdrop-filter:blur(12px);
  padding:44px 44px 38px;
  min-height:auto;
}

/* REGISTER: larger card, not same as login */
body.doctor-access-register .doctor-login-pane{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:30px 28px;
}

body.doctor-access-register .doctor-login-wrap{
  width:min(780px, 100%);
  background:var(--doctor-surface-soft);
  border:1px solid rgba(255,255,255,.82);
  border-radius:28px;
  box-shadow:var(--doctor-shadow);
  backdrop-filter:blur(12px);
  padding:32px 34px 28px;
  min-height:calc(100vh - 60px);
}

/* Shared brand/copy */
body.doctor-access .doctor-login-brand{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:14px;
}

body.doctor-access .doctor-login-brand img{
  height:54px;
  width:auto;
  display:block;
}

body.doctor-access .doctor-login-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:9px 14px;
  border-radius:999px;
  background:#ecfbfa;
  border:1px solid #d7f1ee;
  color:#00a0ae;
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  margin-bottom:18px;
}

body.doctor-access .doctor-login-copy h1{
  font-size:clamp(2.2rem, 1.45rem + 1.8vw, 4rem);
  line-height:.96;
  letter-spacing:-.05em;
  font-weight:900;
  margin:0 0 14px;
  color:var(--doctor-ink);
  max-width:760px;
}

body.doctor-access .doctor-login-copy p{
  margin:0 0 24px;
  color:var(--doctor-muted);
  font-size:1rem;
  line-height:1.65;
  max-width:680px;
}

body.doctor-access .doctor-login-form{
  width:100%;
}

/* =========================
   FORM ELEMENTS
   ========================= */
body.doctor-access .doctor-field{
  margin-bottom:16px;
}

body.doctor-access .doctor-field-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

body.doctor-access .doctor-field label{
  display:block;
  margin:0 0 10px;
  font-size:.92rem;
  font-weight:700;
  color:#1f2937;
}

body.doctor-access .doctor-field-top label{
  margin:0;
}

body.doctor-access .doctor-field-top a{
  font-size:.88rem;
}

body.doctor-access .doctor-input-wrap{
  position:relative;
}

body.doctor-access .doctor-input-icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#96a4af;
  z-index:2;
  font-size:1rem;
  pointer-events:none;
}

body.doctor-access .doctor-input-wrap .form-control{
  width:100%;
  min-height:56px;
  border-radius:16px !important;
  border:1px solid var(--doctor-border) !important;
  background:#fff !important;
  color:#0f172a !important;
  padding:.9rem 1rem .9rem 44px !important;
  box-shadow:none !important;
  font-size:.96rem;
}

body.doctor-access .doctor-input-wrap select.form-control{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:42px !important;
}

body.doctor-access .doctor-input-wrap-select::after{
  content:"\ea4e";
  font-family:"remixicon";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:#8597a3;
  font-size:1rem;
  pointer-events:none;
}

body.doctor-access .doctor-input-wrap .form-control:focus{
  border-color:#25d0c2 !important;
  box-shadow:0 0 0 4px rgba(37,208,194,.14) !important;
}

body.doctor-access .doctor-input-wrap .form-control.is-invalid{
  border-color:#f04438 !important;
  box-shadow:0 0 0 4px rgba(240,68,56,.10) !important;
}

body.doctor-access .invalid-feedback{
  display:block !important;
  color:#b42318 !important;
  font-weight:600;
  margin-top:6px;
  font-size:.88rem;
}

body.doctor-access .doctor-input-wrap.has-error {
    border: 1px solid #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

body.doctor-access .doctor-input-wrap.has-error .doctor-input-icon {
    color: #ef4444;
}

body.doctor-access .doctor-input-wrap.has-error .form-control {
    color: #111827;
}

body.doctor-access .doctor-input-wrap.has-error .form-control::placeholder {
    color: #9ca3af;
}

body.doctor-access .doctor-error-message {
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}

body.doctor-access .alert-success {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;
    border-radius: 8px;

    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;

    font-size: 14px;
    font-weight: 500;

    margin-bottom: 15px;
}

body.doctor-access .alert-success::before {
    content: "✔";
    font-weight: bold;
    color: #10b981;
}

body.doctor-access .alert-danger.doctor-alert {
    display: block;
    padding: 14px 18px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #7f1d1d;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

body.doctor-access .alert-danger.doctor-alert ul {
    margin: 0;
    padding-left: 18px;
}

body.doctor-access .alert-danger.doctor-alert li {
    color: #7f1d1d;
}

body.doctor-access .form-control.is-invalid {
    border-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

body.doctor-access .doctor-form-meta{
  margin-top:4px;
  margin-bottom:18px;
}

body.doctor-access .doctor-remember{
  display:flex;
  align-items:center;
  gap:.5rem;
}

body.doctor-access .doctor-remember .form-check-input{
  width:16px;
  height:16px;
  margin-top:0;
}

body.doctor-access .doctor-remember .form-check-label{
  margin:0;
  color:#51626e;
  font-weight:500;
}

body.doctor-access .btn{
  border-radius:16px !important;
  font-weight:700 !important;
  box-shadow:none !important;
}

body.doctor-access .doctor-submit-btn{
  width:250px;
  min-height:54px;
  border:none !important;
  background:linear-gradient(135deg,#25d0c2 0%,#19d38a 100%) !important;
  color:#fff !important;
  box-shadow:0 16px 30px rgba(25,211,138,.16) !important;
}

body.doctor-access .doctor-submit-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.02);
  color:#fff !important;
}

body.doctor-access .doctor-secondary-btn{
  min-height:52px;
  min-width:120px;
  background:#fff !important;
  border:1px solid #d7e9e6 !important;
  color:#0f5f5c !important;
}

body.doctor-access .doctor-secondary-btn:hover{
  background:#f8fcfc !important;
}

body.doctor-access .doctor-support-box{
  margin-top:16px;
  border:1px solid var(--doctor-border-soft);
  background:#fbfefe;
  border-radius:18px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

body.doctor-access .doctor-support-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

body.doctor-access .doctor-support-copy strong{
  color:var(--doctor-ink);
  font-size:.96rem;
}

body.doctor-access .doctor-support-copy span{
  color:var(--doctor-muted);
  font-size:.9rem;
  line-height:1.55;
}

body.doctor-access .doctor-support-link{
  white-space:nowrap;
  font-weight:700;
}

body.doctor-access .doctor-login-footer{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--doctor-border-soft);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

body.doctor-access .doctor-login-footer > span{
  color:var(--doctor-muted);
  font-size:.92rem;
}

body.doctor-access .doctor-social-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0;
  margin:0;
}

body.doctor-access .doctor-social-list li{
  margin:0;
}

body.doctor-access .doctor-social-list a{
  width:42px;
  height:42px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--doctor-border);
  color:#00a0ae;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:var(--doctor-shadow-sm);
}

body.doctor-access .doctor-social-list a:hover{
  background:#effcfb;
  color:#0f5f66;
}


/* =========================
   RIGHT / INFO SURFACE
   ========================= */
body.doctor-access .doctor-info-surface{
  height:100%;
  min-height:100vh;
  border-radius:0;
  background:var(--doctor-gradient);
  box-shadow:none;
  color:#fff;
  overflow:hidden;
  position:relative;
  padding:36px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

body.doctor-access .doctor-info-surface::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  top:-90px;
  right:-80px;
  background:rgba(255,255,255,.10);
  filter:blur(18px);
}

body.doctor-access .doctor-info-surface::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  left:-80px;
  bottom:-90px;
  background:rgba(255,255,255,.10);
  filter:blur(18px);
}

body.doctor-access .doctor-info-topbar,
body.doctor-access .doctor-info-grid{
  position:relative;
  z-index:2;
}

body.doctor-access .doctor-info-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  font-size:.92rem;
  font-weight:600;
}

body.doctor-access .doctor-chip-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#72f6ae;
  box-shadow:0 0 0 6px rgba(114,246,174,.14);
}

body.doctor-access .doctor-info-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  height:calc(100% - 60px);
  align-items:center;
}

body.doctor-access .doctor-info-kicker{
  display:block;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.12em;
  color:rgba(255,255,255,.78);
  margin-bottom:12px;
}

body.doctor-access .doctor-info-copy h2{
  font-size:clamp(2.15rem, 1.5rem + 1.4vw, 3.6rem);
  line-height:.98;
  letter-spacing:-.045em;
  font-weight:900;
  color:#fff !important;
  margin:0 0 14px;
  max-width:780px;
}

body.doctor-access .doctor-info-copy p{
  max-width:660px;
  font-size:1rem;
  line-height:1.7;
  color:rgba(255,255,255,.84);
  margin:0 0 18px;
}

body.doctor-access .doctor-feature-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

body.doctor-access .doctor-feature-list li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:500;
}

body.doctor-access .doctor-feature-list i{
  width:38px;
  height:38px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
}

body.doctor-access .doctor-info-visual{
  position:relative;
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
}

body.doctor-access .doctor-visual-frame{
  width:min(100%, 560px);
  border-radius:28px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  padding:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

body.doctor-access .doctor-visual-frame img{
  width:100%;
  display:block;
  border-radius:20px;
  object-fit:cover;
}

body.doctor-access .doctor-floating-card,
body.doctor-access .doctor-mini-stat{
  position:absolute;
  z-index:3;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  color:#fff;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

body.doctor-access .doctor-floating-card{
  max-width:230px;
  padding:14px 16px;
}

body.doctor-access .doctor-floating-card strong,
body.doctor-access .doctor-mini-stat strong{
  display:block;
  margin-bottom:4px;
  font-size:.94rem;
}

body.doctor-access .doctor-floating-card span,
body.doctor-access .doctor-mini-stat span{
  color:rgba(255,255,255,.84);
  line-height:1.5;
  font-size:.88rem;
}

body.doctor-access .doctor-card-top{
  right:0;
  top:10%;
}

body.doctor-access .doctor-card-bottom{
  left:0;
  bottom:8%;
}

body.doctor-access .doctor-mini-stat{
  padding:14px 16px;
  bottom:6%;
  right:10%;
  max-width:220px;
}

/* =========================
   REGISTER WIZARD
   ========================= */
body.doctor-access-register .doctor-login-copy h1{
  font-size:clamp(2.05rem, 1.45rem + 1.4vw, 3.25rem);
}

body.doctor-access-register .doctor-login-copy p{
  margin-bottom:20px;
}

body.doctor-access-register .doctor-register-stepper{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
  margin:12px 0 22px;
}

body.doctor-access-register .doctor-register-step{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--doctor-border);
  border-radius:18px;
  background:#f8fcfc;
  min-height:84px;
  transition:all .2s ease;
}


body.doctor-access-register .doctor-register-step.active{
  background:#ecfbfa;
  border-color:#25d0c2;
  box-shadow:0 8px 24px rgba(16,59,58,.06);
}

body.doctor-access-register .doctor-register-step-no{
  width:32px;
  height:32px;
  min-width:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:0 0 32px;
  padding:8px;
  margin:0 !important;
  font-size:.85rem;
  font-weight:800;
  line-height:1 !important;
  text-align:center;
  background:#e8f7f6;
  color:#0f5f66;
}

body.doctor-access-register .doctor-register-step.active .doctor-register-step-no{
  background:linear-gradient(135deg,#25d0c2 0%,#19d38a 100%);
  color:#fff;
}


body.doctor-access-register .doctor-register-step strong{
  display:block;
  color:#103b3a;
  font-size:.98rem;
  font-weight:800;
  line-height:1.2;
  margin:0 0 4px;
}

body.doctor-access-register .doctor-register-step span{
  display:block;
  color:#6b7a86;
  font-size:.84rem;
  line-height:1.35;
  margin:0;
}



body.doctor-access-register .doctor-register-step > div{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

body.doctor-access-register .doctor-register-heading{
  margin-bottom:16px;
}

body.doctor-access-register .doctor-register-heading h3{
  margin:0 0 6px;
  font-size:1.08rem;
  font-weight:800;
  color:#103b3a;
}

body.doctor-access-register .doctor-register-heading p{
  margin:0;
  color:#6b7a86;
  line-height:1.55;
  font-size:.93rem;
}

.doctor-register-panel{
  display:none !important;
}

.doctor-register-panel.is-active{
  display:block !important;
}

body.doctor-access-register .doctor-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px 14px;
}

body.doctor-access-register .doctor-field{
  margin-bottom:0;
}

body.doctor-access-register .doctor-field-full{
  grid-column:1 / -1;
}

body.doctor-access-register .doctor-register-actions{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--doctor-border-soft);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

body.doctor-access-register .doctor-register-actions-right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

body.doctor-access-register .doctor-register-actions .doctor-submit-btn{
  width:auto;
  min-width:150px;
}

body.doctor-access-register .doctor-policy-box{
  border:1px solid #e1eded;
  border-radius:20px;
  background:#fbfefe;
  padding:18px;
  max-height:170px;
  overflow:auto;
  color:#475569;
  line-height:1.6;
  font-size:.9rem;
}

body.doctor-access-register .doctor-policy-box h6{
  margin:16px 0 8px;
  font-size:.94rem;
  font-weight:800;
  color:#103b3a;
}

body.doctor-access-register .doctor-policy-box h6:first-child{
  margin-top:0;
}

body.doctor-access-register .doctor-terms-check{
  align-items:flex-start;
  gap:.65rem;
}

body.doctor-access-register .doctor-terms-check .form-check-input{
  margin-top:.2rem;
}

body.doctor-access-register .doctor-register-footer{
  margin-top:16px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1279.98px){
  body.doctor-access .doctor-login-pane{
    padding:28px;
  }

  body.doctor-access .doctor-info-surface{
    padding:28px;
  }
}

@media (max-width: 1199.98px){
  body.doctor-access .doctor-access-shell,
  body.doctor-access:not(.doctor-access-register) .doctor-access-shell,
  body.doctor-access-register .doctor-access-shell{
    width:100%;
    grid-template-columns:1fr;
    min-height:auto;
  }

  body.doctor-access .doctor-login-pane,
  body.doctor-access .doctor-info-pane{
    min-height:auto;
  }

  body.doctor-access .doctor-login-pane{
    padding:24px;
  }

  body.doctor-access .doctor-login-wrap,
  body.doctor-access-register .doctor-login-wrap{
    width:100%;
    max-width:none;
    min-height:auto;
  }

  body.doctor-access .doctor-info-surface{
    min-height:620px;
  }

  body.doctor-access-register .doctor-register-stepper{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 767.98px){
  body.doctor-access .doctor-login-wrap,
  body.doctor-access-register .doctor-login-wrap,
  body.doctor-access .doctor-info-surface{
    padding:22px;
  }

  body.doctor-access .doctor-login-footer,
  body.doctor-access .doctor-support-box{
    flex-direction:column;
    align-items:flex-start;
  }

  body.doctor-access .doctor-info-copy h2{
    font-size:2.2rem;
  }

  body.doctor-access .doctor-card-top,
  body.doctor-access .doctor-card-bottom,
  body.doctor-access .doctor-mini-stat{
    position:static;
    max-width:none;
    width:100%;
  }

  body.doctor-access .doctor-info-visual{
    flex-direction:column;
    gap:14px;
    min-height:auto;
  }

  body.doctor-access-register .doctor-grid{
    grid-template-columns:1fr;
  }

  body.doctor-access-register .doctor-register-stepper{
    grid-template-columns:1fr;
  }

  body.doctor-access-register .doctor-register-actions{
    flex-direction:column;
    align-items:stretch;
  }

  body.doctor-access-register .doctor-register-actions-right{
    width:100%;
    flex-direction:column;
  }

  body.doctor-access-register .doctor-register-actions .btn,
  body.doctor-access-register .doctor-register-actions .doctor-submit-btn{
    width:100%;
  }

@media (max-width: 768px){

  body.doctor-access .doctor-login-pane{
      padding:16px !important;
  }

  body.doctor-access .doctor-login-wrap{
      width:100% !important;
      max-width:100% !important;

      padding:28px 22px !important;

      border-radius:26px;
  }

}
}


/* =========================================================
   ECAPLUS DOCTOR CREDENTIALING WIZARD
   Shared style for credentialing screen using auth/register base
   ========================================================= */

body.doctor-access-credential .doctor-login-pane{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:30px 28px;
}

body.doctor-access-credential .doctor-login-wrap{
  width:min(920px, 100%);
  min-height:calc(100vh - 60px);
}

body.doctor-access-credential .doctor-credential-copy p{
  max-width:780px;
}

body.doctor-access-credential .doctor-credential-progress{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border:1px solid var(--doctor-border-soft);
  border-radius:18px;
  background:#fbfefe;
  margin:0 0 18px;
}

body.doctor-access-credential .doctor-credential-progress-left{
  display:flex;
  flex-direction:column;
  gap:4px;
}

body.doctor-access-credential .doctor-credential-progress-label{
  font-size:.82rem;
  color:var(--doctor-muted);
  font-weight:600;
}

body.doctor-access-credential .doctor-credential-progress-left strong{
  color:var(--doctor-ink);
  font-size:1.15rem;
}

body.doctor-access-credential .doctor-credential-progress-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:#ecfbfa;
  border:1px solid #d7f1ee;
  color:#00a0ae;
  font-size:.84rem;
  font-weight:700;
}

body.doctor-access-credential .doctor-credential-stepper{
  grid-template-columns:repeat(6, minmax(0,1fr));
  margin-top:0;
}

body.doctor-access-credential .doctor-register-step.done{
  background:#effcf6;
  border-color:#a7f3d0;
}

body.doctor-access-credential .doctor-register-step.done .doctor-register-step-no{
  background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%);
  color:#fff;
}

body.doctor-access-credential .doctor-credential-welcome{
  border:1px solid #e3f1ef;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff 0%, #f9fdfd 100%);
  padding:24px;
  box-shadow:0 16px 34px rgba(16,59,58,.05);
}

body.doctor-access-credential .doctor-credential-welcome-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#ecfbfa;
  border:1px solid #d7f1ee;
  color:#00a0ae;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:16px;
}

body.doctor-access-credential .doctor-credential-welcome h3{
  margin:0 0 10px;
  color:var(--doctor-ink);
  font-size:1.55rem;
  line-height:1.15;
  font-weight:800;
}

body.doctor-access-credential .doctor-credential-welcome > p{
  margin:0 0 22px;
  color:var(--doctor-muted);
  font-size:.98rem;
  line-height:1.7;
  max-width:760px;
}

body.doctor-access-credential .doctor-credential-highlight-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

body.doctor-access-credential .doctor-credential-highlight-card{
  padding:18px;
  border-radius:20px;
  border:1px solid var(--doctor-border-soft);
  background:#fff;
  box-shadow:0 10px 22px rgba(16,59,58,.04);
}

body.doctor-access-credential .doctor-credential-highlight-card i{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#effcfb;
  color:#00a0ae;
  font-size:1.15rem;
  margin-bottom:12px;
}

body.doctor-access-credential .doctor-credential-highlight-card strong{
  display:block;
  margin-bottom:6px;
  color:var(--doctor-ink);
  font-size:.97rem;
}

body.doctor-access-credential .doctor-credential-highlight-card span{
  display:block;
  color:var(--doctor-muted);
  font-size:.9rem;
  line-height:1.6;
}

body.doctor-access-credential .doctor-credential-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  background:#f6fbff;
  border:1px solid #dcecf8;
}

body.doctor-access-credential .doctor-credential-note strong{
  display:block;
  color:var(--doctor-ink);
  margin-bottom:4px;
  font-size:.95rem;
}

body.doctor-access-credential .doctor-credential-note span,
body.doctor-access-credential .doctor-credential-note label{
  color:var(--doctor-muted);
  font-size:.92rem;
  line-height:1.65;
}

body.doctor-access-credential .doctor-credential-section{
  border:1px solid #e1eded;
  border-radius:22px;
  background:#fbfefe;
  padding:18px;
}

body.doctor-access-credential .doctor-credential-section + .doctor-credential-section{
  margin-top:16px;
}

body.doctor-access-credential .doctor-credential-section-head{
  margin-bottom:14px;
}

body.doctor-access-credential .doctor-credential-section-head h4{
  margin:0 0 5px;
  color:var(--doctor-ink);
  font-size:1rem;
  font-weight:800;
}

body.doctor-access-credential .doctor-credential-section-head p{
  margin:0;
  color:var(--doctor-muted);
  line-height:1.6;
  font-size:.9rem;
}

body.doctor-access-credential .doctor-credential-summary-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

body.doctor-access-credential .doctor-credential-summary-box{
  border:1px solid #e3efee;
  border-radius:20px;
  background:#fff;
  padding:18px;
}

body.doctor-access-credential .doctor-credential-summary-box h6{
  margin:0 0 10px;
  font-size:.95rem;
  color:var(--doctor-ink);
  font-weight:800;
}

body.doctor-access-credential .doctor-credential-summary-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px dashed #e8efef;
  font-size:.9rem;
}

body.doctor-access-credential .doctor-credential-summary-item:last-child{
  border-bottom:0;
  padding-bottom:0;
}

body.doctor-access-credential .doctor-credential-summary-item span:first-child{
  color:var(--doctor-muted);
}

body.doctor-access-credential .doctor-credential-summary-item span:last-child{
  color:var(--doctor-ink);
  font-weight:700;
  text-align:right;
}

body.doctor-access-credential .doctor-credential-stack{
  display:grid;
  gap:12px;
  margin-bottom:16px;
}

body.doctor-access-credential .doctor-credential-check{
  padding:15px 16px;
  border-radius:18px;
  border:1px solid #e1eded;
  background:#f9fcfc;
}

body.doctor-access-credential .doctor-credential-check .doctor-remember{
  align-items:flex-start;
}

@media (max-width: 1199.98px){
  body.doctor-access-credential .doctor-credential-stepper{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 767.98px){
  body.doctor-access-credential .doctor-credential-progress{
    flex-direction:column;
    align-items:flex-start;
  }

  body.doctor-access-credential .doctor-credential-stepper{
    grid-template-columns:1fr;
  }

  body.doctor-access-credential .doctor-credential-highlight-grid,
  body.doctor-access-credential .doctor-credential-summary-grid{
    grid-template-columns:1fr;
  }

  body.doctor-access-credential .doctor-credential-welcome{
    padding:18px;
  }

  body.doctor-access-credential .doctor-credential-welcome h3{
    font-size:1.28rem;
  }
}