.form-container {
    padding: 2.5rem;
    max-width: 900px;
}

.form-wizard-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.step {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
    position: relative;
}

.step.active {
    color: var(--primary);
    font-weight: 700;
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: -1.6rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

.form-section h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.full-width {
    grid-column: span 2;
}

.form-grid label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 0.85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.1);
    background: #fff;
}

.form-grid textarea {
    resize: none;
}

.form-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-secondary {
    padding: 0.85rem 2rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}