/* setup.css - extracted from blade templates */

/* === setup/step1.blade.php === */
body{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);min-height:100vh;display:flex;align-items:center}
.setup-card{max-width:500px;margin:0 auto}

/* === setup/done.blade.php === */
body{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);min-height:100vh;display:flex;align-items:center}


/* 步骤指示 */
.setup-step{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.4);font-weight:500}
.setup-step span{width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,.15);display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:700}
.setup-step.active{color:#fff}
.setup-step.active span{background:#fff;color:#764ba2}
.setup-step.done{color:rgba(255,255,255,.6)}
.setup-step.done span{background:rgba(255,255,255,.3)}
.setup-step-line{width:40px;height:2px;background:rgba(255,255,255,.2);align-self:center;margin:0 8px}
