:root { --primary-color: #2563eb; --primary-hover: #1d4ed8; --bg-color: #f8fafc; --card-bg: #ffffff; --text-main: #1e293b; --text-muted: #64748b; --border-color: #e2e8f0; --success-color: #22c55e; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.5; display: flex; flex-direction: column; min-height: 100vh; } header { background-color: var(--card-bg); border-bottom: 1px solid var(--border-color); padding: 1rem 2rem; text-align: center; } main { flex: 1; display: flex; justify-content: center; align-items: flex-start; padding: 2rem; } .wizard-container { background-color: var(--card-bg); width: 100%; max-width: 800px; border-radius: 0.75rem; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); overflow: hidden; } .progress-bar { height: 0.5rem; background-color: var(--border-color); width: 100%; } .progress-fill { height: 100%; background-color: var(--primary-color); width: 0%; transition: width 0.3s ease; } .wizard-content { padding: 2.5rem; } .step { display: none; } .step.active { display: block; animation: fadeIn 0.3s ease-in-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } h2 { margin-bottom: 1rem; font-size: 1.5rem; } p.step-description { color: var(--text-muted); margin-bottom: 2rem; } .wizard-footer { padding: 1.5rem 2.5rem; background-color: #f1f5f9; display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); } button { padding: 0.625rem 1.25rem; border-radius: 0.375rem; font-weight: 500; cursor: pointer; transition: all 0.2s; font-size: 0.875rem; } .btn-secondary { background-color: transparent; border: 1px solid var(--border-color); color: var(--text-main); } .btn-secondary:hover { background-color: #e2e8f0; } .btn-primary { background-color: var(--primary-color); border: 1px solid var(--primary-color); color: white; } .btn-primary:hover { background-color: var(--primary-hover); } button:disabled { opacity: 0.5; cursor: not-allowed; } .hidden { display: none; } @media (max-width: 640px) { main { padding: 1rem; } .wizard-content { padding: 1.5rem; } .wizard-footer { padding: 1rem 1.5rem; } }