/* basic form + tracking styles */
.pcw-wrapper{max-width:900px;margin:20px auto;font-family:Inter,Arial,sans-serif;padding:10px;box-sizing:border-box;}
.pcw-title{text-align:center;color:#2563eb;margin-bottom:12px;font-weight:600;font-size:22px;}
.pcw-card{background:#fff;padding:18px;border-radius:8px;box-shadow:0 8px 30px rgba(37,99,235,0.06);box-sizing:border-box;}
.pcw-row{display:flex;gap:10px;margin-bottom:10px;flex-wrap:wrap}
.pcw-row input, .pcw-row select, textarea{flex:1;padding:10px;border:1px solid #e6eefb;border-radius:6px;width:100%;box-sizing:border-box}
.pcw-footer{display:flex;justify-content:space-between;align-items:center;margin-top:14px;flex-wrap:wrap}
.pcw-btn{background:#2563eb;color:#fff;padding:10px 16px;border-radius:8px;border:none;cursor:pointer}
.pcw-success{background:#f0fdf4;border:1px solid #d1fae5;padding:12px;border-radius:8px;margin-top:12px}
.pcw-footer-note{text-align:center;color:#666;margin-top:12px;font-size:13px}

/* track area */
.oyal-track-wrap{max-width:800px;margin:20px auto;padding:18px;background:#fff;border-radius:8px;box-shadow:0 6px 20px rgba(0,0,0,0.05)}
.oyal-progress{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-top:16px}
.oyal-step{flex:1;text-align:center;position:relative}
.oyal-step .dot{width:28px;height:28px;border-radius:50%;background:#e6eefb;margin:0 auto;display:flex;align-items:center;justify-content:center;color:#2563eb;font-weight:600}
.oyal-step.active .dot{background:linear-gradient(90deg,#2563eb,#1e40af);color:#fff;box-shadow:0 6px 18px rgba(37,99,235,0.2);transform:scale(1.05)}
.oyal-line{height:6px;background:#e6eefb;flex:1;margin:0 6px;border-radius:4px;overflow:hidden}
.oyal-line .fill{height:100%;width:0;background:linear-gradient(90deg,#2563eb,#1e40af);transition:width 0.8s ease}

/* responsive */
@media (max-width:768px){
  .oyal-progress{flex-direction:column;align-items:stretch}
  .oyal-line{width:100%;height:8px;margin:8px 0}
}
