’+.container {
    min-height: 100vh;
    background-color: white;
    font-family: var(--font-sans);
    color: #1e293b;
    display: flex;
    flex-direction: column;
}

.loading,
.error {
    padding: 2rem;
    text-align: center;
    color: #64748b;
}

.progressContainer {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

.progressBar {
    height: 100%;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.welcomeStep,
.successStep {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.brand {
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.welcomeStep h1,
.successStep h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
}

.welcomeStep p,
.successStep p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.successIcon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stepContainer {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stepContainer h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.stepDesc {
    color: #64748b;
    margin: 0 0 2rem 0;
}

.formGroup {
    margin-bottom: 1.5rem;
}

.formGroup label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
}

/* UI Elements */
.chipsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 0.6rem 1rem;
    border-radius: 99px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.chipActive {
    background: #eff6ff;
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 500;
}

.currencyInput {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.currencyToggle {
    display: flex;
    border-right: 1px solid #cbd5e1;
}

.currencyToggle button {
    padding: 0 0.8rem;
    background: #f8fafc;
    border: none;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.9rem;
}

.currencyToggle button.currActive {
    background: white;
    color: var(--color-primary);
    box-shadow: inset 0 -2px 0 var(--color-primary);
}

.currencyInput input {
    flex: 1;
    border: none;
    padding: 0.8rem;
    font-size: 1.1rem;
    outline: none;
}

.input,
.textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
}

.textarea {
    resize: vertical;
}

.counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.counter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    font-weight: bold;
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
}

.row {
    display: flex;
    gap: 1rem;
}

.mapPlaceholder {
    height: 300px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mapLoading {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.helperText {
    font-size: 0.9rem;
    color: #64748b;
}

.checkboxList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

/* Actions */
.actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.primaryBtn {
    flex: 2;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
    max-width: 280px;
    margin: 0 auto;
}

.primaryBtn:hover {
    background: var(--color-primary-hover);
}

.secondaryBtn {
    flex: 1;
    background: white;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}è% *cascade08è%ð%*cascade08ð%ñ% *cascade08ñ%ó%*cascade08ó%Ò' *cascade08Ò'þ'*cascade08þ'Æ) *cascade08Æ)Î)*cascade08Î)Ï) *cascade08Ï)Ñ)*cascade08Ñ)’+ *cascade082|file:///c:/Users/Victoria/OneDrive/Escritorio/Proyectos%20Antigravity/Derpa%20Tech/web/src/app/f/%5Btoken%5D/page.module.css